Files
axum/examples/validator/Cargo.toml
T

15 lines
398 B
TOML
Raw Normal View History

2021-09-29 00:12:23 +08:00
[package]
edition = "2021"
2021-09-29 00:12:23 +08:00
name = "example-validator"
publish = false
version = "0.1.0"
[dependencies]
axum = { path = "../../axum" }
2021-09-29 00:12:23 +08:00
serde = { version = "1.0", features = ["derive"] }
thiserror = "1.0.29"
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"] }
2024-09-27 16:50:52 +00:00
validator = { version = "0.18.1", features = ["derive"] }