Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orangecms/compress-test-rs
testing (de)compression algorithms in Rust :crab:
https://github.com/orangecms/compress-test-rs
Last synced: about 1 month ago
JSON representation
testing (de)compression algorithms in Rust :crab:
- Host: GitHub
- URL: https://github.com/orangecms/compress-test-rs
- Owner: orangecms
- License: mit
- Created: 2022-06-23T18:39:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-28T19:16:27.000Z (over 1 year ago)
- Last Synced: 2024-11-01T07:34:06.211Z (2 months ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Compress, but in Rust :crab:
This is just a CLI to test the `lzss` crate in a hosted environment.
We use `lzss` in [oreboot](https://github.com/oreboot/oreboot) to compress and
decompress a payload in firmware, so it needs to work in a no-std environment.## It is slow
Well, yes and no: By default, you would get a debug build, which indeed is slow
:snail: - it takes half a minute to compress a megabyte on an average machine.
Build with `cargo build --release`, and it will be quite fast again - 2 seconds.