mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 23:30:29 +01:00
39a0c26795
* Add `print-request-response` example Someone asked about this on Discord. I think its worth adding as an example. * add missing feature
13 lines
344 B
TOML
13 lines
344 B
TOML
[package]
|
|
name = "example-print-request-response"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../.." }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.2"
|
|
tower = { version = "0.4", features = ["util", "filter"] }
|
|
hyper = { version = "0.14", features = ["full"] }
|