http-compress 3.0.20

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
1
2
3
4
5
6
7
mod compress;

use http_compress::*;

use std::{borrow::Cow, collections::HashMap};

use {core::hash::BuildHasherDefault, twox_hash::XxHash3_64};