[package]
edition = "2021"
name = "vapor-http"
version = "0.1.2"
build = false
exclude = [
"target/**",
"examples/**",
]
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A dynamically scaling HTTP server that auto-tunes thread count for 85% CPU utilization"
homepage = "https://github.com/starhost-app/vapor-http"
documentation = "https://docs.rs/vapor-http"
readme = "README.md"
keywords = [
"http",
"server",
"async",
"dynamic",
"scaling",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/starhost-app/vapor-http"
[lib]
name = "vapor_http"
path = "src/lib.rs"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]