zenith-http1 0.1.0

Zenith HTTP/1.1 协议解析器(RFC 7230):零堆分配热路径、流式解析、CRLF 防注入
Documentation
[package]
name = "zenith-http1"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
authors.workspace = true
description = "Zenith HTTP/1.1 协议解析器(RFC 7230):零堆分配热路径、流式解析、CRLF 防注入"
keywords = ["zenith", "http", "http1", "parser", "rfc7230"]
categories = ["network-programming", "parser-implementations", "web-programming"]
readme = "../../README.md"

[dependencies]
zenith-api.workspace = true
# 极致性能:栈上小向量(SmallVec<[T; N]>),≤N 的头部列表零堆分配(§6.1.1)
smallvec.workspace = true

[lints]
workspace = true

[features]
default = []

[dev-dependencies]
pretty_assertions.workspace = true