-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 1018 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "server"
version = "0.1.0"
edition = "2021"
authors = ["Shivam Mathur <[email protected]>"]
description = "A personalized Rust backend web server for quick releases"
rust-version = "1.79.0"
readme = "README.md"
license = "MIT OR Apache-2.0"
[workspace]
members = [".", "migration"]
[dependencies]
poem = { version = "3.0.1" }
poem-openapi = { version = "5.0.2", features = ["swagger-ui", "email", "uuid"] }
tokio = { version = "1.38.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18" , features = ["env-filter"] }
migration = { path = "./migration" }
uuid = { version = "^1.6.0", features = ["v4"] }
dotenvy = "0.15.7"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
chrono = "0.4.38"
jsonwebtoken = "9.3.0"
validator = { version = "0.18.1", features = ["derive", "validator_derive"] }
sea-orm = { version = "0.12.15", features = ["sqlx-postgres", "runtime-tokio-native-tls", "with-uuid"] }
mockall = "0.12.1"
bcrypt = "0.15.1"