manserve/Cargo.toml

15 lines
370 B
TOML
Raw Normal View History

2024-08-30 12:25:53 -04:00
[package]
name = "manserve"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = "0.7.5"
2024-08-31 17:59:04 -04:00
base64 = "0.22.1"
http-body-util = "0.1.2"
2024-08-30 12:25:53 -04:00
serde = { version = "1.0.209", features = ["derive"] }
2024-08-31 17:59:04 -04:00
serde_json = "1.0.127"
2024-08-30 12:25:53 -04:00
tokio = { version = "1.39.3", features = ["rt-multi-thread"] }
tower = { version = "0.5.0", features = ["limit", "buffer"] }
tracing-subscriber = "0.3.18"