Files
axum/examples/customize-extractor-error/Cargo.toml
T

16 lines
439 B
TOML
Raw Normal View History

[package]
name = "example-customize-extractor-error"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
axum = { path = "../../axum", features = ["macros"] }
2022-08-19 15:11:03 +02:00
axum-extra = { path = "../../axum-extra" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2022-08-19 15:11:03 +02:00
thiserror = "1.0"
tokio = { version = "1.20", features = ["full"] }
tracing = "0.1"
2022-03-06 12:37:00 +01:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }