28 lines
888 B
TOML
28 lines
888 B
TOML
[package]
|
|
name = "server"
|
|
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 }
|
|
chrono = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
futures-executor = { workspace = true }
|
|
error-stack = { workspace = true }
|
|
sqlx = { workspace = true, features = ["uuid"] }
|
|
moka = { workspace = true, features = ["future", "logging"] }
|
|
lazy_static = { workspace = true }
|
|
tokio-cron-scheduler = { workspace = true }
|
|
tower = { workspace = true }
|
|
|
|
library = { path = "../library" }
|
|
domain = { path = "../domain" }
|
|
i18n = { path = "../i18n" }
|
|
derive = { path = "../derive" } |