[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" } axum-extra = "0.9.3"