Zstd compression in pure OCaml
1(lang dune 3.21)
2(name zstd)
3(generate_opam_files true)
4
5(license ISC)
6(authors "Anil Madhavapeddy <anil@recoil.org>")
7(maintainers "Anil Madhavapeddy <anil@recoil.org>")
8(source (tangled anil.recoil.org/ocaml-zstd))
9
10(package
11 (name zstd)
12 (synopsis "Pure OCaml implementation of Zstandard compression")
13 (description
14 "A complete pure OCaml implementation of the Zstandard (zstd) compression
15algorithm (RFC 8878). Includes both compression and decompression with support
16for all compression levels and dictionaries. When the optional bytesrw
17dependency is installed, the zstd.bytesrw sublibrary provides streaming-style
18compression and decompression.")
19 (depends
20 (ocaml (>= 5.1))
21 bitstream
22 (alcotest (and :with-test (>= 1.7.0))))
23 (depopts bytesrw))