DevKER

devker Documentation License: MIT

Exemple

let mut cache = Cache::new(); let v = String::from("Hello world, this is a wonderful world !"); let vin = v.intobytes();

// Encode. let encoded = deflate(&vin, BlockType::Fixed, &mut cache); // Decode. let decoded = inflate(&encoded, &mut cache).unwrap(); asserteq!(v_in, decoded); ```

let mut cache = Cache::new();

// First try.

let v = String::from("Hello world, this is a wonderful world !"); let vin = v.intobytes();

let encoded = deflate(&vin, BlockType::Fixed, &mut cache); let decoded = inflate(&encoded, &mut cache).unwrap(); asserteq!(v_in, decoded);

// Another try.

let v = String::from("The cache can be reused !"); let vin = v.intobytes();

let encoded = deflate(&vin, BlockType::Fixed, &mut cache); let decoded = inflate(&encoded, &mut cache).unwrap(); asserteq!(v_in, decoded); ```

Support

Note

For the moment, this crate is inspired by libflate.

Documentation

See RustDoc Documentation.

Installation

Add following lines to your Cargo.toml:

toml [dependencies] devker = "0"

Goal

In the future, this crate gathers most of the algorithms that I use for my projects.

The goal is to have performance and no dependency, in order to fully control the source code.

References