Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 595 Bytes

File metadata and controls

21 lines (15 loc) · 595 Bytes

ezstd

Build Status GitHub Hex.pm

Zstd binding for Erlang

This binding is based on zstd v1.5.1. In case you want to modify the zstd version you can change ZSTD_REV from build_deps.sh

Usage

ezstd:compress(<<"hello world">>).
ezstd:compress(<<"hello world">>, 3).
ezstd:decompress(ezstd:compress(<<"hello world">>, 3)).