42 lines
1.2 KiB
TOML
42 lines
1.2 KiB
TOML
[package]
|
|
name = "gateway"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
common = { workspace = true }
|
|
auth = { workspace = true }
|
|
data_api = { workspace = true }
|
|
control_plane = { workspace = true }
|
|
realtime = { workspace = true }
|
|
storage = { workspace = true }
|
|
functions = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
axum = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
dotenvy = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
axum-prometheus = "0.6"
|
|
tower_governor = "0.4.2"
|
|
tower-http = { version = "0.6.8", features = ["cors", "trace", "fs"] }
|
|
moka = { version = "0.12.14", features = ["future"] }
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
tokio-tungstenite = "0.21"
|
|
futures = { workspace = true }
|
|
lazy_static = "1.4"
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
redis = { workspace = true }
|
|
opentelemetry = "0.22"
|
|
opentelemetry-otlp = { version = "0.15", features = ["tonic"] }
|
|
opentelemetry_sdk = { version = "0.22", features = ["rt-tokio"] }
|
|
tracing-opentelemetry = "0.23"
|
|
|
|
[dev-dependencies]
|
|
tower = "0.5"
|