goose-http 0.1.0

HTTP/1.1 server for Rust implementing RFC 9110/9111/9112 semantics, caching, and range handling
Documentation
[package]
name = "goose-http"
version = "0.1.0"
edition = "2024"
description = "HTTP/1.1 server for Rust implementing RFC 9110/9111/9112 semantics, caching, and range handling"
license = "CC0-1.0"
repository = "https://github.com/goosewin/goose-http"
readme = "README.md"
keywords = ["http", "http-server", "rfc-9110", "rfc-9111", "rfc-9112"]
categories = ["network-programming"]
exclude = ["artifacts/**/*"]

[dependencies]
thiserror = "1"
bytes = "1"
tokio = { version = "1", features = ["io-util", "net", "macros", "rt", "rt-multi-thread", "time"] }
futures-core = "0.3"
futures-util = { version = "0.3", default-features = true }
httpdate = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }