this repo has no description
1opam-version: "2.0"
2maintainer: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
3authors: [ "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
4homepage: "https://github.com/mirage/checkseum"
5bug-reports: "https://github.com/mirage/checkseum/issues"
6dev-repo: "git+https://github.com/mirage/checkseum.git"
7doc: "https://mirage.github.io/checkseum/"
8license: "MIT"
9synopsis: "Adler-32, CRC32 and CRC32-C implementation in C and OCaml"
10description: """
11Checkseum is a library to provide implementation of Adler-32, CRC32 and CRC32-C in C and OCaml.
12
13This library use the linking trick to choose between the C implementation (checkseum.c) or the OCaml implementation (checkseum.ocaml).
14This library is on top of optint to get the best representation of an int32.
15"""
16
17build: [ "dune" "build" "-p" name "-j" jobs ]
18run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
19
20depends: [
21 "ocaml" {>= "4.07.0"}
22 "dune" {>= "1.9.2" & < "2.6"}
23 "optint" {>= "0.0.3" & < "0.0.5"}
24 "base-bytes"
25 "bigarray-compat"
26 "fmt"
27 "rresult"
28 "cmdliner"
29 "alcotest" {with-test}
30]
31
32depopts: [
33 "ocaml-freestanding"
34 "mirage-xen-posix"
35]
36
37conflicts: [
38 "mirage-xen-posix" {< "3.1.0"}
39 "ocaml-freestanding" {< "0.4.3"}
40 "mirage-runtime" {< "4.0.0"}
41]
42url {
43 src:
44 "https://github.com/mirage/checkseum/releases/download/v0.1.1/checkseum-v0.1.1.tbz"
45 checksum: [
46 "sha256=a3913487f951c5bebc8e44cce41878ef3e2263c9c81a1ed963b0a86268c84229"
47 "sha512=f97c2e353c2bebdef2ed61cc6a32994fc9028c70e8c96b134ea92d178a29e2eda6c8bad1099b0a6d05971a69c94da2d5d476aeb4ddd9e802bb4bebe07f034579"
48 ]
49}
50available: [ arch != "s390x" ]