-
Notifications
You must be signed in to change notification settings - Fork 1
/
dune-project
54 lines (44 loc) · 1002 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
(lang dune 3.14)
(name multicore-magic)
(generate_opam_files true)
(implicit_transitive_deps false)
(source
(github ocaml-multicore/multicore-magic))
(authors "Vesa Karvonen <[email protected]>")
(maintainers "Vesa Karvonen <[email protected]>")
(homepage "https://github.com/ocaml-multicore/multicore-magic")
(license ISC)
(package
(name multicore-magic)
(synopsis "Low-level multicore utilities for OCaml")
(depends
(ocaml
(>= 4.12.0))
;; Test dependencies
(domain_shims
(and
(>= 0.1.0)
:with-test))
(alcotest
(and
(>= 1.7.0)
:with-test))
;; Documentation dependencies
(sherlodoc
(and
(>= 0.2)
:with-doc))
(odoc
(and
(>= 2.4.1)
:with-doc))))
(package
(name multicore-magic-dscheck)
(synopsis
"An implementation of multicore-magic API using the atomic module of DScheck to make DScheck tests possible in libraries using multicore-magic")
(allow_empty)
(depends
(ocaml
(>= 4.12.0))
(dscheck
(>= 0.5.0))))