diff options
author | Valentin Popov <valentin@popov.link> | 2024-01-08 00:21:28 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-01-08 00:21:28 +0300 |
commit | 1b6a04ca5504955c571d1c97504fb45ea0befee4 (patch) | |
tree | 7579f518b23313e8a9748a88ab6173d5e030b227 /vendor/weezl/README.md | |
parent | 5ecd8cf2cba827454317368b68571df0d13d7842 (diff) | |
download | fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.tar.xz fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.zip |
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'vendor/weezl/README.md')
-rw-r--r-- | vendor/weezl/README.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/weezl/README.md b/vendor/weezl/README.md new file mode 100644 index 0000000..456b866 --- /dev/null +++ b/vendor/weezl/README.md @@ -0,0 +1,19 @@ +# weezl + +LZW en- and decoding that goes weeeee! + +## Overview + +This library, written in purely safe and dependency-less Rust, provides +encoding and decoding for lzw compression in the style as it occurs in `gif` +and `tiff` image formats. It has a standalone binary that may be used to handle +those data streams but it is _not_ compatible with Spencer's `compress` and +`uncompress` binaries (though a drop-in may be developed at a later point). + +Using in a `no_std` environment is also possible though an allocator is +required. This, too, may be relaxed in a later release. A feature flag already +exists but currently turns off almost all interfaces. + +## License + +All code is dual licensed MIT OR Apache-2.0. |