#zstd #zstandard

include-bytes-zstd

Includes a file with zstd compression

1 unstable release

0.1.0 Feb 17, 2023

#7 in #zstandard

Download history 31/week @ 2024-11-16 32/week @ 2024-11-23 24/week @ 2024-11-30 40/week @ 2024-12-07 59/week @ 2024-12-14 11/week @ 2024-12-21 5/week @ 2024-12-28 17/week @ 2025-01-04 40/week @ 2025-01-11 54/week @ 2025-01-18 16/week @ 2025-01-25 50/week @ 2025-02-01 42/week @ 2025-02-08 59/week @ 2025-02-15 111/week @ 2025-02-22 59/week @ 2025-03-01

276 downloads per month

MIT/Apache

5KB

include_bytes_zstd!()

This library provides a macro to include a file with zstd compression.

This macro can be used like std::include_bytes!, but the byte array is compressed by the zstd crate. The included data will be decompressed by the ruzstd crate in runtime and returned as a Vec<u8>.

This macro performs the decompression each time it is called.

Examples

input.txt:

This is a test.

Rust code:

let data = include_bytes_zstd::include_bytes_zstd!("test-resources/input.txt", 19);
assert_eq!(b"This is a test.\n", data.as_slice());

License

Licensed under either of

at your option.

Contribution

See the guidelines.


lib.rs:

Includes a file with zstd compression.

This macro can be used like std::include_bytes, but the byte array is compressed by the zstd crate. The included data will be decompressed by the ruzstd crate in runtime and returned as a Vec<u8>.

This macro performs the decompression each time it is called.

Examples

input.txt:

This is a test.

Rust code:

let data = include_bytes_zstd::include_bytes_zstd!("test-resources/input.txt", 19);
assert_eq!(b"This is a test.\n", data.as_slice());

Dependencies

~7.5MB
~160K SLoC