28 lines
917 B
Text
28 lines
917 B
Text
|
|
version: "0.3.0"
|
||
|
|
opam-version: "2.0"
|
||
|
|
maintainer: [ "romain.calascibetta@gmail.com" ]
|
||
|
|
authors: "Romain Calascibetta"
|
||
|
|
license: "ISC"
|
||
|
|
homepage: "https://github.com/mirage/optint"
|
||
|
|
bug-reports: "https://github.com/mirage/optint/issues"
|
||
|
|
dev-repo: "git+https://github.com/mirage/optint.git"
|
||
|
|
doc: "https://mirage.github.io/optint/"
|
||
|
|
synopsis: "Efficient integer types on 64-bit architectures"
|
||
|
|
description: """
|
||
|
|
This library provides two new integer types, `Optint.t` and `Int63.t`, which
|
||
|
|
guarantee efficient representation on 64-bit architectures and provide a
|
||
|
|
best-effort boxed representation on 32-bit architectures.
|
||
|
|
|
||
|
|
Implementation depends on target architecture.
|
||
|
|
"""
|
||
|
|
|
||
|
|
build: ["dune" "build" "-p" name "-j" jobs]
|
||
|
|
run-test: [ "dune" "runtest" "-p" name "-j" jobs ]
|
||
|
|
|
||
|
|
depends: [
|
||
|
|
"ocaml" {>= "4.07.0"}
|
||
|
|
"dune"
|
||
|
|
"crowbar" {with-test & >= "0.2"}
|
||
|
|
"monolith" {with-test}
|
||
|
|
"fmt" {with-test}
|
||
|
|
]
|