#snappy #bindings

parity-snappy

Rust bindings for the snappy compression library

2 releases

Uses old Rust 2015

0.1.0 Aug 30, 2018
0.1.0-beta.0 Aug 29, 2018

#16 in #snappy

Download history 68/week @ 2023-12-04 87/week @ 2023-12-11 79/week @ 2023-12-18 51/week @ 2023-12-25 41/week @ 2024-01-01 100/week @ 2024-01-08 61/week @ 2024-01-15 55/week @ 2024-01-22 49/week @ 2024-01-29 44/week @ 2024-02-05 62/week @ 2024-02-12 72/week @ 2024-02-19 122/week @ 2024-02-26 92/week @ 2024-03-04 76/week @ 2024-03-11 104/week @ 2024-03-18

397 downloads per month

GPL-3.0 license

1MB
2.5K SLoC

C++ 2.5K SLoC // 0.2% comments Rust 179 SLoC // 0.1% comments

parity-snappy

Build Status Build status

Rust bindings for the snappy compression library.

Currently this library uses snappy v1.1.7. The source for snappy is included in the parity-snappy-sys crate, so there's no need to pre-install snappy, and the library will be statically linked.

Example

use parity_snappy as snappy;

let input: Vec<u8> = ...;
let compressed = snappy::compress(&input);
let decompressed = snappy::decompress(&compressed);

assert_eq!(decompressed == input);
use parity_snappy as snappy;

let input: Vec<u8> = ...;
let mut compressed = Vec::with_capacity(snappy::max_compressed_len(input.len()));
let mut decompressed = Vec::with_capacity(input.len());

let len = snappy::compress_into(&input, &mut compressed);
let _ = snappy::decompress_into(&compressed[..len], &mut decompressed);

assert_eq!(decompressed == input);

Dependencies