this repo has no description
1opam-version: "2.0"
2authors: "Francois Berenger"
3maintainer: "unixjunkie@sdf.org"
4homepage: "https://github.com/UnixJunkie/lz4-chans"
5bug-reports: "https://github.com/UnixJunkie/lz4-chans/issues"
6dev-repo: "git+https://github.com/UnixJunkie/lz4-chans.git"
7license: "BSD-3-Clause"
8build: [
9 ["dune" "build" "-p" name "-j" jobs]
10# the tests don't pass on OCaml 4.03.0, because of a marshalling behavior
11# that was working before 4.03.0 and put back in place after 4.03.0
12 ["dune" "exec" "-p" name "src/test.exe"] {with-test & ocaml:version != "4.03.0" & dune:version < "2.0"}
13]
14depends: [
15 "ocaml"
16 "base-unix"
17 "conf-lz4"
18 "dolog" {>= "4.0.0" & < "5.0.0"}
19 "dune" {< "3.0"}
20]
21synopsis: "LZ4-compressed binary channels"
22description: """
23Open/close binary channels, with LZ4-compression happening in the background,
24using a separate process and a named pipe.
25"""
26url {
27 src: "https://github.com/UnixJunkie/lz4-chans/archive/v3.0.0.tar.gz"
28 checksum: [
29 "sha256=8fdeb0499c847bec3d9e370e8455a1889ec7445858b465f22f98f42005c7cf29"
30 "md5=99c95f75ee1c57c7e59820ab7046e777"
31 ]
32}