this repo has no description
1opam-version: "2.0" 2synopsis: "Collection of lock-free data structures for Multicore OCaml" 3maintainer: ["Carine Morel" "KC Sivaramakrishnan" "Sudha Parimala"] 4authors: ["KC Sivaramakrishnan"] 5license: "ISC" 6homepage: "https://github.com/ocaml-multicore/saturn" 7doc: "https://ocaml-multicore.github.io/saturn/" 8bug-reports: "https://github.com/ocaml-multicore/saturn/issues" 9depends: [ 10 "dune" {>= "3.14"} 11 "ocaml" {>= "4.13"} 12 "domain_shims" {>= "0.1.0" & with-test} 13 "backoff" {>= "0.1.0"} 14 "multicore-magic" {>= "2.3.0"} 15 "multicore-magic-dscheck" {>= "2.3.0" & with-test} 16 "alcotest" {>= "1.7.0" & with-test} 17 "qcheck" {>= "0.21.3" & with-test} 18 "qcheck-core" {>= "0.21.3" & with-test} 19 "qcheck-stm" {>= "0.3" & with-test} 20 "qcheck-multicoretests-util" {>= "0.3" & with-test} 21 "qcheck-alcotest" {>= "0.21.3" & with-test} 22 "yojson" {>= "2.0.2" & with-test} 23 "dscheck" {>= "0.5.0" & with-test} 24 "sherlodoc" {>= "0.2" & with-doc} 25 "odoc" {>= "2.4.1" & with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/ocaml-multicore/saturn.git" 42url { 43 src: 44 "https://github.com/ocaml-multicore/saturn/releases/download/0.5.0/saturn-0.5.0.tbz" 45 checksum: [ 46 "sha256=6669b1c087b93e23d84d376f3876ce8d16efd9bfdb6fdcb421e901c9f4443e39" 47 "sha512=a101f28c753826302f4aca32171a19713385c479cc576a0fcf574211f44cef6fb1a3246b025b815e3fc8c828422b28fd4c84f92c80ba78c515e2f7d03e14e19a" 48 ] 49} 50x-commit-hash: "60dd353c9b9b6fae8a3a61d0fcf30d599e0a68a9"