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 "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.11/eio-0.11.tbz" 52 checksum: [ 53 "sha256=0c33742074562631677886f4fe4a02f9672cec94297ff85c2ed854db5baa71aa" 54 "sha512=590843cb5fb3906fd5ab9911d29206172d164a53c48e635871a23c95d4cdce8ae0999480471187fdddee8c9c523148911ca140feabde6a826c317671a3b33090" 55 ] 56} 57x-commit-hash: "3fe575538d162fa7df209085b693ddf1b8e3842f"