manserve/Cargo.toml

16 lines
426 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"] }
2024-09-02 12:17:22 -04:00
tower-http = { version = "0.5.2", features = ["cors"] }
2024-08-30 12:25:53 -04:00
tracing-subscriber = "0.3.18"