28 lines
829 B
TOML
28 lines
829 B
TOML
[package]
|
|
name = "nomos-http-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
axum = ["dep:axum", "dep:hyper", "utoipa-swagger-ui/axum"]
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" }
|
|
tracing = "0.1"
|
|
utoipa = "4.0"
|
|
utoipa-swagger-ui = { version = "4.0" }
|
|
|
|
# axum related dependencies
|
|
axum = { version = "0.6", optional = true }
|
|
hyper = { version = "0.14", features = ["full"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
axum = "0.6"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
utoipa-swagger-ui = { version = "4.0", features = ["axum"] }
|
|
reqwest = { version = "0.11", features = ["blocking", "json"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|