33 lines
833 B
TOML
33 lines
833 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"
|
|
chrono = { version = "0.4.24", features = ["serde"] }
|
|
config = "0.13.3"
|
|
hyper = { version = "0.14.25", features = ["full"] }
|
|
serde = { version = "1.0.158", features = ["derive"] }
|
|
serde_json = "1.0.94"
|
|
sqlx = { version = "0.6.3", features = ["runtime-tokio-native-tls", "macros", "postgres", "uuid", "chrono"] }
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.26.0", features = ["full"] }
|
|
tower = "0.4.13"
|
|
tower-http = { version = "0.4.0", features = ["trace", "tracing"] }
|
|
tracing = "0.1.35"
|
|
tracing-subscriber = { version = "0.3.16", features = ["json"] }
|
|
uuid = { version = "1.3.0", features = ["v4", "serde"] }
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|