http-compress 3.0.6

A high-performance async library for HTTP compression/decompression, supporting Brotli, Deflate, and Gzip algorithms. Provides both compression and decompression capabilities with optimized memory usage, ideal for HTTP clients/servers and network programming.
Documentation
[dependencies.brotli]
version = "8.0.2"

[dependencies.flate2]
version = "1.1.5"

[dependencies.twox-hash]
version = "2.1.2"

[lib]
name = "http_compress"
path = "src/lib.rs"

[package]
authors = ["root@ltpp.vip"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["network-programming", "web-programming"]
description = "A high-performance async library for HTTP compression/decompression, supporting Brotli, Deflate, and Gzip algorithms. Provides both compression and decompression capabilities with optimized memory usage, ideal for HTTP clients/servers and network programming."
edition = "2024"
exclude = ["target", "Cargo.lock", "sh", ".github"]
keywords = ["http", "request", "response", "tcp", "redirect"]
license = "MIT"
name = "http-compress"
readme = "README.md"
repository = "https://github.com/crates-dev/http-compress.git"
version = "3.0.6"

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

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