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: "Abstract type on integer between x64 and x86 architecture"
10description: """
11This library provide an abstract type which represents at least a 32-bits integer.
12On x64, this library use a native unboxed integer (63 bits).
13On x86, this library use a boxed int32.
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 "fmt" {with-test}
27]
28x-commit-hash: "ae1bb20d25d9638001f3f1388e24f6ee2fd6aba1"
29url {
30 src:
31 "https://github.com/mirage/optint/releases/download/v0.0.5/optint-v0.0.5.tbz"
32 checksum: [
33 "sha256=774901af130eacc08e30ae43e9a18c926f284c22e3c66c2ff95e74648fbedf26"
34 "sha512=fe5762ee7a1a08c7b389fbef9188f8a59c40bb8e19535cec1661a789f973338d5b6d4b30c1869e089282242efa63bfc86c1fb15224b47c05cb5277971aa14a35"
35 ]
36}