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: [ "dune" "build" "-p" name "-j" jobs ]
18run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
19
20depends: [
21 "ocaml" {>= "4.03.0"}
22 "dune" {>= "1.9.2" & < "2.6"}
23 "optint" {< "0.0.5"}
24 "base-bytes"
25 "bigarray-compat"
26 "fmt"
27 "rresult"
28 "cmdliner"
29 "alcotest" {with-test}
30]
31available: arch = "x86_64"
32
33depopts: [
34 "ocaml-freestanding"
35 "mirage-xen-posix"
36]
37
38conflicts: [
39 "mirage-xen-posix" {< "3.1.0"}
40 "ocaml-freestanding" {< "0.4.1"}
41 "mirage-runtime" {>= "4.0.0"}
42]
43url {
44 src:
45 "https://github.com/mirage/checkseum/releases/download/v0.0.9/checkseum-v0.0.9.tbz"
46 checksum: [
47 "sha256=02aad775eece3a04911d4a4552b5f0fdcebfc3e2569b61e23d2c7ce33865967f"
48 "sha512=7bdef1d2bcb92acecfe2bcad03aebb27762a5d674c99d3f683c253e744879bd01c612ae29cf03cd85f1edad9aa3032f668d176cda833ef7c0a2e2a3687cff1e2"
49 ]
50}