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"
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"
35url {
36 src:
37 "https://github.com/dinosaure/checkseum/releases/download/v0.0.3/checkseum-v0.0.3.tbz"
38 checksum: [
39 "sha256=d5057adeda7eb8e1cd29d0b8e37ec8883185616bcba11e3ab73ed0b8f52f448a"
40 "md5=ae5c301cd3d514ed44e13796015bfc1c"
41 ]
42}