Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 372 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 372 Bytes

ezstd Build Status

Erlang bindings to the Zstandard compression library, based on zstd rust binding

Usage

{ok, Compressed} = ezstd:compress(<<"Hello there!">>),
{ok, <<"Hello there!">>} = ezstd:decompress(Compressed).