-
Notifications
You must be signed in to change notification settings - Fork 0
/
par_incr.opam
37 lines (37 loc) · 1.02 KB
/
par_incr.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Parallel Self Adjusting Computation"
description:
"A library for incremental computation, with support for parallelism"
maintainer: ["Dipesh Kafle"]
authors: ["Dipesh Kafle"]
license: "MIT"
tags: ["ocaml" "incremental" "multicore-ocaml"]
homepage: "https://github.com/ocaml-multicore/par_incr"
doc: "https://ocaml-multicore.github.io/par_incr/par_incr/index.html"
bug-reports: "https://github.com/ocaml-multicore/par_incr/issues"
depends: [
"dune" {>= "3.9"}
"ocaml" {>= "4.14.0"}
"domainslib" {>= "0.5.0" & with-test}
"alcotest" {>= "1.7.0" & with-test}
"mdx" {>= "2.3.0" & with-test}
"current_incr" {>= "0.6.1" & with-test}
"incremental" {>= "v0.15.0" & os != "win32" & with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocaml-multicore/par_incr.git"