http-type 3.72.0

A library providing essential types for HTTP, including request bodies, response headers, and other core HTTP abstractions.
Documentation
[package]
name = "http-type"
version = "3.72.0"
edition = "2024"
authors = ["root@ltpp.vip"] 
license = "MIT"
description = """A library providing essential types for HTTP, including request bodies, response headers, and other core HTTP abstractions."""
keywords = ["http", "request", "response", "tcp", "redirect"]
repository = "https://github.com/eastspire/http-type.git"
categories = ["network-programming", "web-programming"]
exclude = [
    "target",
    "Cargo.lock",
    "sh",
    ".github"
]

[dependencies]
hex = "0.4.3"
http-constant = "1.42.4"
lombok-macros = "1.11.3"
serde = "1.0.219"
serde-xml-rs = "0.8.0"
serde_json = "1.0.140"
serde_urlencoded = "0.7.1"
url = "2.5.4"
tokio = { version = "1.45.0", features = ["full"] }
http-compress = "2.13.4"
dashmap = "6.1.0"
once_cell = "1.21.3"
simd-json = "0.15.0"
futures = "0.3.31"
std-macro-extensions = "0.23.2"
num_cpus = "1.16.0"
ahash = "0.8.12"
urlencoding = "2.1.3"
twox-hash = "2.1.0"

[profile.dev]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"

[profile.release]
incremental = false
opt-level = 3
lto = true
panic = "unwind"
debug = false
codegen-units = 1
strip = "debuginfo"