21 lines
332 B
TOML
21 lines
332 B
TOML
[package]
|
|
name = "ztp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
path = "src/main.rs"
|
|
name = "ztp"
|
|
|
|
[dependencies]
|
|
axum = "0.6.11"
|
|
hyper = { version = "0.14.25", features = ["full"] }
|
|
tokio = { version = "1.26.0", features = ["full"] }
|
|
tower = "0.4.13"
|
|
tracing = "0.1.35"
|
|
tracing-subscriber = "0.3.14"
|
|
|