[package]
edition = "2024"
name = "pulse_http"
version = "0.2.0"
authors = ["akshatarora130 <akshatarora130@gmail.com>"]
build = false
exclude = [
"../examples/*",
"../PRD.md",
"../target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async HTTP/1.1 framework on Tokio — raw TCP, routing, middleware, no Hyper"
homepage = "https://github.com/AA-Systems/pulse_http"
documentation = "https://docs.rs/pulse_http"
readme = "README.md"
keywords = [
"http",
"server",
"async",
"tokio",
"framework",
]
categories = [
"network-programming",
"web-programming::http-server",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/AA-Systems/pulse_http"
[lib]
name = "pulse_http"
path = "src/lib.rs"
[[bench]]
name = "micro"
path = "benches/micro.rs"
harness = false
[dependencies.futures]
version = "0.3"
[dependencies.serde]
version = "1.0.229"
[dependencies.serde_json]
version = "1.0.151"
[dependencies.tokio]
version = "1.53.1"
features = ["full"]
[dev-dependencies.criterion]
version = "0.5"