# `🗜️ gdeflate-rs`
**A library for compressing and decompressing the GDeflate format 🦀**
[![crates][crates-badge]][crates-url]
[![license][license-badge]][license-url]
[![dependency-status][dependency-badge]][dependency-url]
[crates-badge]: https://img.shields.io/crates/v/gdeflate.svg
[crates-url]: https://crates.io/crates/gdeflate
[license-badge]: https://img.shields.io/badge/License-MIT/Apache_2.0-blue.svg
[license-url]: LICENSE-MIT
[dependency-badge]: https://deps.rs/repo/github/projectkml/gdeflate-rs/status.svg
[dependency-url]: https://deps.rs/repo/github/projectkml/gdeflate-rs
TOML
[dependencies]
gdeflate = "0.1.1"
Use the compress
and decompress
functions to compress and decompress data.
```Rust
use gdeflate::CompressionLevel;
...
let bytes = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
let compressedbytes = gdeflate::compress(&bytes, CompressionLevel::Level12).unwrap();
asserteq!(bytes, &gdeflate::decompress(&compressed_bytes, bytes.len()));
```
🚨 Warning 🚨
This library is still experimental and only supports single-threaded compression and decompression at the moment.