[package] name = "gateway" version = "0.1.0" edition = "2024" [dependencies] shared = { path = "../shared" } storaged = { path = "../storaged" } catalogd = { path = "../catalogd" } queryd = { path = "../queryd" } aibridge = { path = "../aibridge" } ingestd = { path = "../ingestd" } vectord = { path = "../vectord" } journald = { path = "../journald" } truth = { path = "../truth" } validator = { path = "../validator" } tokio = { workspace = true } axum = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true } tower-http = { workspace = true } object_store = { workspace = true } proto = { path = "../proto" } tonic = { workspace = true } opentelemetry = { workspace = true } opentelemetry_sdk = { workspace = true } opentelemetry-stdout = { workspace = true } tracing-opentelemetry = { workspace = true } arrow = { workspace = true } chrono = { workspace = true } reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] } toml = { workspace = true }