Files
axum/examples/form/Cargo.toml
T

18 lines
391 B
TOML
Raw Normal View History

[package]
name = "example-form"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
axum = { path = "../../axum" }
2022-06-10 08:59:17 +02:00
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
2022-03-06 12:37:00 +01:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
2025-03-17 14:31:17 +02:00
[dev-dependencies]
http-body-util = "0.1.3"
mime = "0.3.17"
tower = "0.5.2"