chuanyue-service/api/Cargo.toml
2024-06-10 21:10:02 +08:00

20 lines
506 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 = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
tower-http = { workspace = true, features = ["trace"] }
validator = { workspace = true }
axum-extra = { workspace = true }
library = { path = "../library" }
domain = { path = "../domain" }
service = { path = "../service" }