19 lines
541 B
TOML
19 lines
541 B
TOML
[package]
|
|
name = "ec-cf-bootstrap-api"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-only"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
axum = { version = "0.7", features = ["json"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
|
|
tower-http = { version = "0.6", features = ["trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Keep this out of the workspace; it's built in a container image.
|
|
[workspace]
|
|
|