2022-08-18 19:07:01 +02:00
|
|
|
[package]
|
|
|
|
|
name = "error-handling"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-18 20:01:41 +02:00
|
|
|
axum = { path = "../../axum", features=["matched-path"] }
|
2022-08-18 19:07:01 +02:00
|
|
|
axum-extra = { path = "../../axum-extra" }
|
2022-08-18 20:41:26 +02:00
|
|
|
axum-macros = { path = "../../axum-macros" }
|
2022-08-18 19:07:01 +02:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
thiserror = "1.0"
|
|
|
|
|
tokio = { version = "1.20", features = ["full"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|