[package]
edition = "2024"
name = "goose-http"
version = "0.1.0"
build = false
exclude = ["artifacts/**/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP/1.1 server for Rust implementing RFC 9110/9111/9112 semantics, caching, and range handling"
readme = "README.md"
keywords = [
"http",
"http-server",
"rfc-9110",
"rfc-9111",
"rfc-9112",
]
categories = ["network-programming"]
license = "CC0-1.0"
repository = "https://github.com/goosewin/goose-http"
[lib]
name = "goose_http"
path = "src/lib.rs"
[[bin]]
name = "compliance_harness"
path = "src/bin/compliance_harness.rs"
[[test]]
name = "http_flow"
path = "tests/http_flow.rs"
[dependencies.bytes]
version = "1"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
default-features = true
[dependencies.httpdate]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"net",
"macros",
"rt",
"rt-multi-thread",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]