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
|
(lang dune 3.14)
(name multicore-bench)
(version 0.1.7)
(generate_opam_files true)
(implicit_transitive_deps false)
(authors "Vesa Karvonen <vesa.a.j.k@gmail.com>")
(maintainers "Vesa Karvonen <vesa.a.j.k@gmail.com>")
(source
(github ocaml-multicore/multicore-bench))
(homepage "https://github.com/ocaml-multicore/multicore-bench")
(license ISC)
(using mdx 0.4)
(package
(name multicore-bench)
(synopsis
"Framework for writing multicore benchmark executables to run on current-bench")
(depends
(domain-local-await
(>= 1.0.1))
(multicore-magic
(>= 2.1.0))
(mtime
(>= 2.0.0))
(yojson
(>= 2.1.0))
(domain_shims
(>= 0.1.0))
(backoff
(>= 0.1.0))
;; Test dependencies
(mdx
(and
(>= 2.4.0)
:with-test))
;; Documentation dependencies
(sherlodoc
(and
(>= 0.2)
:with-doc))
(odoc
(and
(>= 2.4.1)
:with-doc))
;; OCaml version
(ocaml
(>= 4.12.0))))
|