25 lines
733 B
TOML
25 lines
733 B
TOML
[package]
|
|
name = "api-server"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
axum = "0.8"
|
|
dotenvy = "0.15"
|
|
module-auth = { path = "../module-auth" }
|
|
platform-auth = { path = "../platform-auth" }
|
|
platform-oss = { path = "../platform-oss" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
shared-logging = { path = "../shared-logging" }
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net"] }
|
|
time = { version = "0.3", features = ["formatting"] }
|
|
tower-http = { version = "0.6", features = ["trace"] }
|
|
tracing = "0.1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
http-body-util = "0.1"
|
|
tower = { version = "0.5", features = ["util"] }
|