axum/examples/serve-with-hyper/Cargo.toml
2024-09-27 18:50:52 +02:00

12 lines
364 B
TOML

[package]
name = "example-serve-with-hyper"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
axum = { path = "../../axum" }
hyper = { version = "1.0", features = [] }
hyper-util = { version = "0.1", features = ["tokio", "server-auto", "http1"] }
tokio = { version = "1.0", features = ["full"] }
tower = { version = "0.5.1", features = ["util"] }