this repo has no description
1opam-version: "2.0" 2synopsis: "A scheduler independent blocking mechanism" 3description: 4 "A low level mechanism intended for writing higher level libraries that need to block in a scheduler friendly manner." 5maintainer: ["Vesa Karvonen <vesa.a.j.k@gmail.com>"] 6authors: ["Vesa Karvonen <vesa.a.j.k@gmail.com>"] 7license: "ISC" 8homepage: "https://github.com/ocaml-multicore/domain-local-await" 9bug-reports: "https://github.com/ocaml-multicore/domain-local-await/issues" 10depends: [ 11 "dune" {>= "3.3"} 12 "ocaml" {>= "4.12.0"} 13 "thread-table" {>= "1.0.0"} 14 "alcotest" {>= "1.7.0" & with-test} 15 "mdx" {>= "1.10.0" & with-test} 16 "odoc" {with-doc} 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32dev-repo: "git+https://github.com/ocaml-multicore/domain-local-await.git" 33url { 34 src: 35 "https://github.com/ocaml-multicore/domain-local-await/releases/download/1.0.0/domain-local-await-1.0.0.tbz" 36 checksum: [ 37 "sha256=2a28d683489349da9bc245dde4aaf7ffde2eac39bc405498da53261a352ec46a" 38 "sha512=dba7f1d3053f711f3d4887acbc8f30abd5b26c379321aa2247b3162919bae4b28e8de8b687f815c478cfbb58ee438597a94968cfe10e7f0a0a1aaad88cfeb13c" 39 ] 40} 41x-commit-hash: "c0bc225ec413eb783424bfc941ed31af9b1cbdff"