Registry / utility / lzw
library0.10.0rscratesunverified

LZW compression and decompression.

# Cargo.toml [dependencies] lzw = "0.10.0"
INSTALL
IMPORT
SIG · LZW
L
lzw
utilityrustv0.10.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

LzwReader
use lzw::LzwReader;

Decodes LZW compressed data.

use lzw::LzwReader; fn main() { let compressed = vec![0x00, 0x01, 0x02]; let mut decoder = LzwReader::new(); let result = decoder.decode_bytes(&compressed).unwrap(); println!("{:?}", result); }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.10.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources
lzw — cargo add lzw · libregistry