zero2prod_axum/Cargo.toml

27 lines
622 B
TOML
Raw Normal View History

2023-07-01 20:34:21 +02:00
[package]
name = "learn_axum"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-10-07 22:14:22 +02:00
tokio = { version = "1.32.0", features = ["full"] }
# Serde / json
2023-07-01 20:34:21 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
2023-10-17 14:12:08 +02:00
serde_with = "3"
2023-10-07 22:14:22 +02:00
# Axum
axum = { version = "0.6.20" }
tower-http = { version = "0.4.4", features = ["fs"] }
2023-07-02 13:25:54 +02:00
tower-cookies = "0.9"
2023-10-07 22:14:22 +02:00
# Others
lazy-regex = "3"
2023-10-07 22:33:50 +02:00
async-trait = "0.1"
2023-10-16 14:38:15 +02:00
strum_macros = "0.25"
uuid = { version = "1", features = ["v4", "fast-rng"] }
2023-07-01 20:34:21 +02:00
[dev-dependencies]
anyhow = "1"
2023-10-07 22:14:22 +02:00
httpc-test = "0.1.5"