this repo has no description
1opam-version: "2.0" 2synopsis: "Effect-based direct-style IO API for OCaml" 3description: "An effect-based IO API for multicore OCaml with fibers." 4maintainer: ["anil@recoil.org"] 5authors: ["Anil Madhavapeddy" "Thomas Leonard"] 6license: "ISC" 7homepage: "https://github.com/ocaml-multicore/eio" 8doc: "https://ocaml-multicore.github.io/eio/" 9bug-reports: "https://github.com/ocaml-multicore/eio/issues" 10depends: [ 11 "dune" {>= "3.9"} 12 "ocaml" {>= "5.0.0"} 13 "bigstringaf" {>= "0.9.0"} 14 "cstruct" {>= "6.0.1"} 15 "lwt-dllist" 16 "optint" {>= "0.1.0"} 17 "psq" {>= "0.2.0"} 18 "fmt" {>= "0.8.9"} 19 "hmap" {>= "0.8.1"} 20 "domain-local-await" {>= "0.1.0"} 21 "crowbar" {>= "0.2" & with-test} 22 "mtime" {>= "2.0.0"} 23 "mdx" {>= "2.2.0" & with-test} 24 "dscheck" {>= "0.1.0" & with-test} 25 "odoc" {with-doc} 26] 27conflicts: [ 28 "ocaml-base-compiler" {< "5.0.0~beta1"} 29 "ocaml-variants" {< "5.0.0~beta1"} 30 "ocaml-system" {< "5.0.0~beta1"} 31 "seq" {< "0.3"} 32] 33build: [ 34 ["dune" "subst"] {dev} 35 [ 36 "dune" 37 "build" 38 "-p" 39 name 40 "-j" 41 jobs 42 "@install" 43 "@runtest" {with-test} 44 "@doc" {with-doc} 45 ] 46] 47dev-repo: "git+https://github.com/ocaml-multicore/eio.git" 48url { 49 src: 50 "https://github.com/ocaml-multicore/eio/releases/download/v0.12/eio-0.12.tbz" 51 checksum: [ 52 "sha256=d84847ce85ffb78641496ad24be3c6ab5cc2c6885cedad6ae257ecac59d926a0" 53 "sha512=fbcbc8e7e8eaaeacd6c7b3be04fec19b356f900307b2cc1bf6c1cd6bd538c4ea59ab2c7d936fac00c52a3277737671759f1584025c24e0a7727447609c633821" 54 ] 55} 56x-commit-hash: "ad7149dc297b856c9bedd692e5809538fd27a4e2"