[package]
name = "cedros-admin-server"
version = "0.1.1"
edition = "2021"
rust-version = "1.80"
description = "Shared admin server shell for Cedros admin composition"
license = "MIT OR Apache-2.0"
readme = "README.md"
[lib]
name = "cedros_admin"
path = "src/lib.rs"
[[bin]]
name = "cedros-admin-server"
path = "src/main.rs"
[dependencies]
anyhow = "1"
axum = "0.8"
clap = { version = "4", features = ["derive"] }
reqwest = { version = "0.12", default-features = false, features = ["http2", "json", "rustls-tls"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
urlencoding = "2"