Zstd compression in pure OCaml
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "Pure OCaml implementation of Zstandard compression"
4description: """
5A complete pure OCaml implementation of the Zstandard (zstd) compression
6algorithm (RFC 8878). Includes both compression and decompression with support
7for all compression levels and dictionaries. When the optional bytesrw
8dependency is installed, the zstd.bytesrw sublibrary provides streaming-style
9compression and decompression."""
10maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
11authors: ["Anil Madhavapeddy <anil@recoil.org>"]
12license: "ISC"
13homepage: "https://tangled.org/anil.recoil.org/ocaml-zstd"
14bug-reports: "https://tangled.org/anil.recoil.org/ocaml-zstd/issues"
15depends: [
16 "dune" {>= "3.21"}
17 "ocaml" {>= "5.1"}
18 "bitstream"
19 "alcotest" {with-test & >= "1.7.0"}
20 "odoc" {with-doc}
21]
22depopts: ["bytesrw"]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "@install"
33 "@runtest" {with-test}
34 "@doc" {with-doc}
35 ]
36]
37dev-repo: "git+https://tangled.org/anil.recoil.org/ocaml-zstd"
38x-maintenance-intent: ["(latest)"]