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/dinosaure/checkseum"
5bug-reports: "https://github.com/dinosaure/checkseum/issues"
6dev-repo: "git+https://github.com/dinosaure/checkseum.git"
7doc: "https://dinosaure.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: [
18 [ "dune" "subst" ]
19 [ "dune" "build" "-p" name "-j" jobs ]
20 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
21]
22
23depends: [
24 "ocaml" {>= "4.03.0"}
25 "dune" {>= "1.9.2" & < "2.6"}
26 "optint" {< "0.0.5"}
27 "base-bytes"
28 "base-bigarray"
29 "fmt"
30 "rresult"
31 "cmdliner"
32 "alcotest" {with-test}
33]
34available: arch = "x86_64"
35
36depopts: [
37 "ocaml-freestanding"
38 "mirage-xen-posix"
39]
40
41conflicts: [
42 "mirage-xen-posix" {< "3.1.0"}
43 "ocaml-freestanding" {< "0.4.3"}
44 "mirage-runtime" {< "4.0.0"}
45]
46url {
47 src:
48 "https://github.com/dinosaure/checkseum/releases/download/v0.1.0/checkseum-v0.1.0.tbz"
49 checksum: [
50 "sha256=0f154f2e0537d524db91771784d4ac26696e718df0120e3bab798f6a38d8ac2d"
51 "sha512=6254f135abd60e62b9eb3e9b65903a546eb2058d14e92a5cc0be94380f2d11da652ab24d2a672f2bca7d509eb19eae6da5bad7deb4ca3b438b8759ae71e3d3b3"
52 ]
53}