[package]
edition = "2024"
name = "xocomil"
version = "0.1.0"
build = false
exclude = [
"fuzz/",
"benches/",
"profile.json*",
"perf.data*",
"*.profraw",
".claude/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, zero-allocation HTTP/1.1 request parser and response writer"
documentation = "https://docs.rs/xocomil"
readme = "README.md"
keywords = [
"http",
"parser",
"zero-copy",
"no-alloc",
"http1",
]
categories = [
"network-programming",
"parser-implementations",
"web-programming",
]
license = "MIT"
repository = "https://github.com/42Pupusas/xocomil"
[lib]
name = "xocomil"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.httparse]
version = "1"
[lints.clippy]
nursery = "warn"
pedantic = "warn"
perf = "warn"
[profile.bench]
debug = 2