this repo has no description
1opam-version: "2.0"
2maintainer: [ "romain.calascibetta@gmail.com" ]
3authors: "Romain Calascibetta"
4license: "ISC"
5homepage: "https://github.com/mirage/optint"
6bug-reports: "https://github.com/mirage/optint/issues"
7dev-repo: "git+https://github.com/mirage/optint.git"
8doc: "https://mirage.github.io/optint/"
9synopsis: "Efficient integer types on 64-bit architectures"
10description: """
11This library provides two new integer types, `Optint.t` and `Int63.t`, which
12guarantee efficient representation on 64-bit architectures and provide a
13best-effort boxed representation on 32-bit architectures.
14
15Implementation depends on target architecture.
16"""
17
18build: ["dune" "build" "-p" name "-j" jobs]
19run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
20
21depends: [
22 "ocaml" {>= "4.07.0"}
23 "dune"
24 "crowbar" {with-test & >= "0.2"}
25 "monolith" {with-test}
26 "pprint" {with-test & < "20220103"}
27 "fmt" {with-test}
28]
29x-commit-hash: "34f6f88360df1b71870d471088e1dbb581578f20"
30url {
31 src:
32 "https://github.com/mirage/optint/releases/download/v0.1.0/optint-v0.1.0.tbz"
33 checksum: [
34 "sha256=27847660223c16cc7eaf8fcd9d5589a0b802114330a2529578f8007d3b01185d"
35 "sha512=6ec2f6977b2cb148b0b9c2664e8a8525b0d0b987652f5a4c9754d200d8026de8bfab664d31807e68b5f1dffa8bbe5b51167435e6e66faf5baefb509c667e0c77"
36 ]
37}