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.7"} 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 "alcotest" {>= "1.4.0" & with-test} 25 "dscheck" {>= "0.1.0" & with-test} 26 "odoc" {with-doc} 27] 28conflicts: [ 29 "ocaml-base-compiler" {< "5.0.0~beta1"} 30 "ocaml-variants" {< "5.0.0~beta1"} 31 "ocaml-system" {< "5.0.0~beta1"} 32 "seq" {< "0.3"} 33] 34build: [ 35 ["dune" "subst"] {dev} 36 [ 37 "dune" 38 "build" 39 "-p" 40 name 41 "-j" 42 jobs 43 "@install" 44 "@runtest" {with-test} 45 "@doc" {with-doc} 46 ] 47] 48dev-repo: "git+https://github.com/ocaml-multicore/eio.git" 49url { 50 src: 51 "https://github.com/ocaml-multicore/eio/releases/download/v0.10/eio-0.10.tbz" 52 checksum: [ 53 "sha256=390f7814507b8133d6c25e3a67a742d731c7ca66252b287b1fb0e3ad4d10eecc" 54 "sha512=9c0c9088b178df9799aaae9deb803a802228f1329cbe452479c90e80a13985d9c364ea86ee14e4e759133940f9f6065c7e8ece509d176fb1e347c5320f00a494" 55 ] 56} 57x-commit-hash: "687ebf99a6ab10ce5d85f4a3335d8e2e94c2b875"