3 unstable releases

0.2.1 Oct 29, 2022
0.2.0 Oct 20, 2022
0.1.0 Jan 23, 2021

#121 in Compression

Download history 130/week @ 2023-11-23 141/week @ 2023-11-30 184/week @ 2023-12-07 168/week @ 2023-12-14 75/week @ 2023-12-21 55/week @ 2023-12-28 100/week @ 2024-01-04 113/week @ 2024-01-11 527/week @ 2024-01-18 278/week @ 2024-01-25 284/week @ 2024-02-01 426/week @ 2024-02-08 393/week @ 2024-02-15 522/week @ 2024-02-22 411/week @ 2024-02-29 260/week @ 2024-03-07

1,611 downloads per month
Used in 6 crates (5 directly)

MIT/Apache

29KB
479 lines

lz-str-rs

crates.io Documentation MIT/Apache-2 licensed Rust

A port of lz-string to Rust.

Installing

Add the following to your Cargo.toml file:

[dependencies]
lz-str = "0.1.0"

Getting Started

// The demonstrated functions correspond with `LZString.compress` and `LZString.decompress` from the JS version.
fn main() {
    let data = "The quick brown fox jumps over the lazy dog";

    // Compress the data. This cannot fail.
    let compressed_data = lz_str::compress(data);

    // Decompress the data.
    // This may return `Option::None` if it fails.
    // Make sure to do error-checking in a real application to prevent crashes!
    let decompressed_data =
        lz_str::decompress(compressed_data).expect("`compressed_data` is invalid");

    // The decompressed_data should be the same as data, except encoded as UTF16.
    // We undo that here.
    // In a real application,
    // you will want to do error checking to prevent users from causing crashes with invalid data.
    let decompressed_data =
        String::from_utf16(&decompressed_data).expect("`decompressed_data` is not valid UTF16");

    assert!(data == decompressed_data);
}

See the examples directory for more examples.

Features

rustc-hash: This feature will replace some internal maps' hashers with rustc-hash, boosting performance at the cost of not using a DOS-resistant hasher.

Testing

cargo test

Benching

cargo bench

Bindings

WebAssembly

Authors

adumbidiot (Nathaniel Daniel)

License

Licensed under either of

at your option.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies