20 lines
485 B
TOML
20 lines
485 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 }
|
|
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" }
|
|
|