-
Notifications
You must be signed in to change notification settings - Fork 106
/
dune-project
32 lines (28 loc) · 973 Bytes
/
dune-project
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
29
30
31
32
(lang dune 2.7)
(name batteries)
(generate_opam_files true)
(allow_approximate_merlin) ; dune requires this due to the use of prefilter.exe
(source (github ocaml-batteries-team/batteries-included))
(documentation "http://ocaml-batteries-team.github.io/batteries-included/hdoc2/")
(authors "OCaml batteries-included team")
(maintainers
"Cedric Cellier <[email protected]>"
"Francois Berenger <[email protected]>"
"Gabriel Scherer <[email protected]>"
"Thibault Suzanne <[email protected]>"
"Simmo Saan <[email protected]>")
(license "LGPL-2.1-or-later with OCaml-LGPL-linking-exception")
(package
(name batteries)
(synopsis "A community-maintained standard library extension")
(depends
(ocaml (>= 4.02.3))
camlp-streams
(ocamlfind (>= 1.5.3))
(qtest (and :with-test (>= 2.5)))
(qcheck (and :with-test (>= 0.9) (< 0.14)))
(benchmark (and :with-test (>= 1.6)))
num)
(conflicts
base-effects
ocaml-option-no-flat-float-array))