http-compress 2.0.0

A lightweight library for decompressing HTTP responses supporting Brotli, Deflate, and Gzip.
Documentation

http-compress

Official Documentation

Api Docs

A lightweight library for decompressing HTTP responses supporting Brotli, Deflate, and Gzip.

Features

Installation

To use this crate, you can run cmd:

cargo add http-compress

Use

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

let headers: HashMap<_, _> = HashMap::new();
let data: Vec<u8> = vec![];
let body: Cow<'_, Vec<u8>> = Compress::from(&headers).decode(&data, 1024);
assert_eq!(*body, data);

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

Contact

For any inquiries, please reach out to the author at ltpp-universe root@ltpp.vip.