16 lines
426 B
TOML
16 lines
426 B
TOML
[package]
|
|
name = "manserve"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = "0.7.5"
|
|
base64 = "0.22.1"
|
|
http-body-util = "0.1.2"
|
|
serde = { version = "1.0.209", features = ["derive"] }
|
|
serde_json = "1.0.127"
|
|
tokio = { version = "1.39.3", features = ["rt-multi-thread"] }
|
|
tower = { version = "0.5.0", features = ["limit", "buffer"] }
|
|
tower-http = { version = "0.5.2", features = ["cors"] }
|
|
tracing-subscriber = "0.3.18"
|