-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 1002 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
31
[package]
name = "todo_server_axum"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["migration"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.1", features = ["macros", "headers"] }
bcrypt = "0.13.0"
chrono = { version = "0.4.23", features = ["serde"] }
dotenvy = "0.15.6"
dotenvy_macro = "0.15.1"
jsonwebtoken = "8.2.0"
# use git until "close" method is available on crates.io
sea-orm = { git = "https://github.com/SeaQL/sea-orm", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
] }
serde = { version = "1.0.151", features = ["derive"] }
serde_with = "2.1.0"
tokio = { version = "1.23.0", features = ["rt-multi-thread", "macros"] }
uuid = { version = "1.2.2", features = ["v4", "serde"] }
validator = { version = "0.16.0", features = ["derive"] }
[dev-dependencies]
reqwest = { version = "0.11.13", features = ["json", "cookies", "rustls-tls"] }
migration = { path = "./migration" }