Crates.io | smdiff-decoder |
lib.rs | smdiff-decoder |
version | 0.5.0 |
source | src |
created_at | 2024-06-07 16:15:22.438616 |
updated_at | 2024-06-07 16:15:22.438616 |
description | A pure Rust implementation for a SMDIFF decoder. |
homepage | |
repository | https://github.com/ThinkingJoules/smdiff |
max_upload_size | |
id | 1264963 |
size | 14,185 |
In theory compression algorithms should know when they have reached the end of the compressed data to decompress. My issues were finding rust libraries that didn't simply read to EOF.
For some reason the zstd rust lib doesn't behave well. I enabled single frame, but it keeps trying to read non-compressed data. I ended up using the ruzstd crate.