File: dune-project

package info (click to toggle)
ocaml-multicore-magic 2.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: ml: 565; sh: 60; ansic: 8; javascript: 6; makefile: 3
file content (60 lines) | stat: -rw-r--r-- 1,099 bytes parent folder | download
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
55
56
57
58
59
60
(lang dune 3.14)

(name multicore-magic)
(version 2.3.1)

(generate_opam_files true)

(implicit_transitive_deps false)

(source
 (github ocaml-multicore/multicore-magic))

(authors "Vesa Karvonen <vesa.a.j.k@gmail.com>")

(maintainers "Vesa Karvonen <vesa.a.j.k@gmail.com>")

(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
  (alcotest
   (and
    (>= 1.7.0)
    :with-test))
  (js_of_ocaml
   (and
    (>= 5.4.0)
    :with-test))
  (conf-npm
   (and
    (<> :arch "x86_32")
    (<> :os "win32")
    :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))))