-
Notifications
You must be signed in to change notification settings - Fork 1
/
nullable-array.opam
28 lines (25 loc) · 909 Bytes
/
nullable-array.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
opam-version: "2.0"
name: "ocplib-nullable-array"
version: "1.0.0"
maintainer: "Pierre Chambart <pierre.chambart@ocamlpro.com>"
authors: "Pierre Chambart"
homepage: "https://github.com/chambart/ocaml-nullable-array"
bug-reports: "https://github.com/chambart/ocaml-nullable-array/issues"
license: "MIT"
dev-repo: "git+https://github.com/chambart/ocaml-nullable-array.git"
synopsis:
"More efficient `'a option array`"
description: """
Small self-contained library providing an efficient implementation for a type equivalent to `'a option array`
"""
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "-p" name "@doc"] {with-doc}
]
depends: [
"dune" {>= "1.10"}
"ocaml" {>= "4.03" (* use Sys.opaque_identity *)
& < "4.13~"} (* need to be tested before announcing that a version is correct *)
]