[package]
edition = "2024"
name = "http-compress"
version = "21.5.0"
authors = ["root@ltpp.vip"]
build = false
exclude = [
"**/*.log",
".github",
"Cargo.lock",
"debug",
"img",
"logs",
"sh",
"target",
"tmp",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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."
readme = "README.md"
keywords = [
"http",
"request",
"response",
"tcp",
"redirect",
]
categories = [
"network-programming",
"web-programming",
]
license = "MIT"
repository = "https://github.com/hyperlane-dev/hyperlane.git"
resolver = "2"
[lib]
name = "http_compress"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.brotli]
version = "9.0.0"
[dependencies.flate2]
version = "1.1.10"
[dependencies.twox-hash]
version = "2.1.4"