[package]
edition = "2024"
rust-version = "1.97.1"
name = "zenith-http1"
version = "0.1.0"
authors = ["Zenith Developers <2098175794@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zenith HTTP/1.1 协议解析器(RFC 7230):零堆分配热路径、流式解析、CRLF 防注入"
homepage = "https://www.mosit.cn"
documentation = "https://docs.rs/zenith-stack"
readme = "README.md"
keywords = [
"zenith",
"http",
"http1",
"parser",
"rfc7230",
]
categories = [
"network-programming",
"parser-implementations",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://gitcode.com/Mosi45-git/Zenith"
resolver = "2"
[features]
default = []
[lib]
name = "zenith_http1"
path = "src/lib.rs"
[dependencies.smallvec]
version = "1.13"
[dependencies.zenith-api]
version = "0.1.0"
[dev-dependencies.pretty_assertions]
version = "1"
[lints.clippy]
all = "warn"
correctness = "deny"
perf = "deny"
suspicious = "deny"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "deny"