chuanyue-service/api/Cargo.toml
2024-03-10 09:46:37 +08:00

18 lines
472 B
TOML

[package]
name = "api"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.7.4"
tokio = { version = "1.36.0", features = ["full"] }
tracing = "0.1.40"
tower-http = { version = "0.5.2", features = ["trace"] }
validator = { version = "0.17", features = ["derive"] }
library = { path = "../library" }
domain = { path = "../domain" }
service = { path = "../service" }