2021-08-20 09:26:31 +02:00
|
|
|
[package]
|
|
|
|
name = "example-print-request-response"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2021-11-03 12:38:48 +01:00
|
|
|
axum = { path = "../../axum" }
|
2022-06-10 08:59:17 +02:00
|
|
|
hyper = { version = "0.14", features = ["full"] }
|
2021-08-20 09:26:31 +02:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
2022-06-10 08:59:17 +02:00
|
|
|
tower = { version = "0.4", features = ["util", "filter"] }
|
2021-08-20 09:26:31 +02:00
|
|
|
tracing = "0.1"
|
2022-03-06 12:37:00 +01:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|