[package] name = "plasma-demo-api" version = "0.1.0" edition = "2021" [dependencies] # HTTP server axum = "0.7" tower = "0.4" tower-http = { version = "0.5", features = ["cors", "trace"] } # Async runtime tokio = { version = "1", features = ["full"] } # PlasmaCloud clients flaredb-client = { path = "../../../flaredb/crates/flaredb-client" } iam-client = { path = "../../../iam/crates/iam-client" } # Serialization serde = { version = "1", features = ["derive"] } serde_json = "1" # Observability tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } prometheus = "0.13" # Error handling anyhow = "1"