2021-08-18 00:49:01 +02:00
|
|
|
[package]
|
2023-12-29 01:49:13 +01:00
|
|
|
name = "example-error-handling"
|
2021-08-18 00:49:01 +02:00
|
|
|
version = "0.1.0"
|
2022-06-17 20:11:35 +02:00
|
|
|
edition = "2021"
|
2021-08-18 00:49:01 +02:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-29 01:49:13 +01:00
|
|
|
axum = { path = "../../axum", features = ["macros"] }
|
2022-06-10 08:59:17 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-08-18 00:49:01 +02:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
2023-12-29 01:49:13 +01:00
|
|
|
tower-http = { version = "0.5", features = ["trace"] }
|
2021-08-18 00:49:01 +02:00
|
|
|
tracing = "0.1"
|
2022-03-06 12:37:00 +01:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|