20 lines
542 B
TOML
20 lines
542 B
TOML
[package]
|
|
name = "catering_services"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
db = { path = "../../crates/db" }
|
|
auth = { path = "../../crates/auth" }
|
|
contracts = { path = "../../crates/contracts" }
|
|
cache = { path = "../../crates/cache" }
|
|
storage = { path = "../../crates/storage" }
|
|
|