[package]
edition = "2024"
name = "net-cat"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal hand-rolled HTTP/1.1 client over std::net::TcpStream. Plain HTTP only in v0 (no TLS); used to give web-api-cat's fetch a concrete backend. No external HTTP crate; all parsing and framing are local. No mut beyond the FFI carve-out for TcpStream::read_to_end. Sixth sub-crate of a Servo-replacement webview runtime targeting Tauri."
readme = "README.md"
keywords = [
"http",
"fetch",
"client",
"minimal",
"type-driven",
]
categories = [
"network-programming",
"web-programming::http-client",
]
license = "MIT OR Apache-2.0"
[lib]
name = "net_cat"
path = "src/lib.rs"
[[test]]
name = "types"
path = "tests/types.rs"
[dependencies]
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
manual_map = "warn"
needless_pass_by_value = "warn"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1