uhttp 0.2.2

Rust HTTP Server Library for Humans
Documentation
[package]
name = "uhttp"
version = "0.2.2"
edition = "2021"
description = "Rust HTTP Server Library for Humans"
license = "MIT"
homepage = "https://github.com/alshdavid/uhttp"
repository = "https://github.com/alshdavid/uhttp"

[lib]
name = "uhttp"

[[bench]]
name = "benchmarks"
harness = false
path = "src/bench.rs"

[dependencies]
httparse = "1"
bytes = "1"
socket2 = "0.5"
futures = "0.3"
tokio = { version = "1", features = ["net", "io-util", "rt", "sync"] }
async-trait = "0.1"


[dev-dependencies]
divan = "0.*"