[package] name = "http-app" version = "0.1.1" edition = "2021" description = "Wrapper around hyper to help with making a http server" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1.41.0", features = ["net", "rt"] } hyper = "1.5.0" hyper-util = { version = "0.1.9", features = ["full"] } tracing = "0.1.40" bytes = "1.8.0" http-body-util = "0.1.2" prometheus = "0.13.0" [dev-dependencies] tokio = { version = "1.41.0", features = ["full"] }