-
Notifications
You must be signed in to change notification settings - Fork 31
/
dune-project
32 lines (31 loc) · 1.13 KB
/
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 3.14)
(name saturn)
(generate_opam_files true)
(implicit_transitive_deps false)
(source (github ocaml-multicore/saturn))
(license ISC)
(authors "KC Sivaramakrishnan")
(maintainers "Carine Morel" "KC Sivaramakrishnan" "Sudha Parimala")
(documentation "https://ocaml-multicore.github.io/saturn/")
(using mdx 0.4)
(package
(name saturn)
(synopsis "Collection of concurent-safe data structures for Multicore OCaml")
(depends
(ocaml (or (and (>= 4.14) (< 5.0.0)) (>= 5.2.0)))
(backoff (>= 0.1.1))
(multicore-magic (>= 2.3.0))
(alcotest (and (>= 1.7.0) :with-test))
(domain_shims (and (>= 0.1.0) :with-test))
(dscheck (and (>= 0.5.0) :with-test))
(mdx (and (>= 0.4) :with-test))
(multicore-bench (and (>= 0.1.7) :with-test))
(multicore-magic-dscheck (and (>= 2.3.0) :with-test))
(qcheck (and (>= 0.21.3) :with-test))
(qcheck-alcotest (and (>= 0.21.3) :with-test))
(qcheck-core (and (>= 0.21.3) :with-test))
(qcheck-stm (and (>= 0.4) :with-test))
(qcheck-multicoretests-util (and (>= 0.4) :with-test))
(yojson (and (>= 2.0.2) :with-test))
(sherlodoc (and (>= 0.2) :with-doc))
(odoc (and (>= 2.4.1) :with-doc))))