this repo has no description
1opam-version: "2.0" 2maintainer: "ygrek@autistici.org" 3homepage: "https://github.com/ygrek/ocaml-zstd" 4license: "BSD-3-Clause" 5authors: [ "ygrek" ] 6tags: [ "org:ygrek" "clib:zstd" ] 7doc: [ "https://ygrek.org/p/ocaml-zstd/api/index.html" ] 8dev-repo: "git+https://github.com/ygrek/ocaml-zstd.git" 9bug-reports: "https://github.com/ygrek/ocaml-zstd/issues" 10build: [ 11 ["dune" "subst"] {dev} 12 ["dune" "build" "-p" name "-j" jobs 13 "@install" 14 "@doc" {with-doc} 15 "@runtest" {with-test}] 16] 17depends: [ 18 "ocaml" 19 "dune" {>= "2.0"} 20 "ctypes" {< "0.21.0"} 21 "integers" 22 ("extlib" {with-test} | "extlib-compat" {with-test}) 23 "base-unix" {with-test} 24 "conf-zstd" 25] 26synopsis: "Bindings to zstd compression library" 27description: """ 28Zstd, short for Zstandard, is a fast lossless compression algorithm, 29targeting real-time compression scenarios at zlib-level compression ratio. 30See http://zstd.net/ for more info.""" 31url { 32 src: "https://ygrek.org/p/release/ocaml-zstd/ocaml-zstd-0.3.tar.gz" 33 checksum: [ 34 "md5=632a2e170d8a233365899d152974e085" 35 "sha256=d3f12f6ecbcedc5920ec24cc2c1679e79a7a5db77bb8f69bda3ff8915585bcb3" 36 "sha512=58922944a24b4314207dde5dadf268ac6ca3b3e181ddba257aef1e5a31e8b55c55e26e3b5f4c46a2c748195d1406f70c7581c2605839bf81056aa07c64fff73b" 37 ] 38 mirrors: "https://github.com/ygrek/ocaml-zstd/releases/download/v0.3/ocaml-zstd-0.3.tar.gz" 39}