|
| 1 | +# This file is generated by dune, edit dune-project instead |
1 | 2 | opam-version: "2.0" |
2 | | -maintainer:"KC Sivaramakrishnan < [email protected]>" |
3 | | -authors: ["KC Sivaramakrishnan < [email protected]>"] |
4 | | -homepage: "https://github.com/ocaml-multicore/saturn" |
5 | | -doc: "https://ocaml-multicore.github.io/saturn" |
6 | | -synopsis: "Parallelism-safe data structures for multicore OCaml" |
| 3 | +synopsis: |
| 4 | + "Collection of parallelism-safe data structures for Multicore OCaml" |
| 5 | +maintainer: ["Carine Morel" "KC Sivaramakrishnan" "Sudha Parimala"] |
| 6 | +authors: ["KC Sivaramakrishnan"] |
7 | 7 | license: "ISC" |
8 | | -dev-repo: "git+https://github.com/ocaml-multicore/saturn.git" |
| 8 | +homepage: "https://github.com/ocaml-multicore/saturn" |
| 9 | +doc: "https://ocaml-multicore.github.io/saturn/" |
9 | 10 | bug-reports: "https://github.com/ocaml-multicore/saturn/issues" |
10 | | -tags: [] |
11 | 11 | depends: [ |
| 12 | + "dune" {>= "3.2"} |
12 | 13 | "ocaml" {>= "4.12"} |
13 | | - "dune" {>= "3.0"} |
14 | 14 | "domain_shims" {>= "0.1.0"} |
15 | | - "qcheck" {with-test & >= "0.18.1"} |
16 | | - "qcheck-stm" {with-test & >= "0.2"} |
17 | | - "qcheck-alcotest" {with-test & >= "0.18.1"} |
18 | | - "alcotest" {with-test & >= "1.6.0"} |
19 | | - "yojson" {with-test &>= "2.0.2"} |
20 | | - "dscheck" {with-test & >= "0.1.0"} |
| 15 | + "saturn_lockfree" {= version} |
| 16 | + "qcheck" {>= "0.18.1" & with-test} |
| 17 | + "qcheck-stm" {>= "0.2" & with-test} |
| 18 | + "qcheck-alcotest" {>= "0.18.1" & with-test} |
| 19 | + "yojson" {>= "2.0.2" & with-test} |
| 20 | + "dscheck" {>= "0.1.0" & with-test} |
| 21 | + "odoc" {with-doc} |
21 | 22 | ] |
22 | | -available: arch != "x86_32" & arch != "arm32" & arch != "ppc64" |
23 | | -depopts: [] |
24 | | -build: ["dune" "build" "-p" name "-j" jobs] |
| 23 | +build: [ |
| 24 | + ["dune" "subst"] {dev} |
| 25 | + [ |
| 26 | + "dune" |
| 27 | + "build" |
| 28 | + "-p" |
| 29 | + name |
| 30 | + "-j" |
| 31 | + jobs |
| 32 | + "@install" |
| 33 | + "@runtest" {with-test} |
| 34 | + "@doc" {with-doc} |
| 35 | + ] |
| 36 | +] |
| 37 | +dev-repo: "git+https://github.com/ocaml-multicore/saturn.git" |
0 commit comments