this repo has no description
at main 1.6 kB view raw
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" {>= "2.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 "astring" {>= "0.8.5" & with-test} 21 "crowbar" {>= "0.2" & with-test} 22 "mtime" {>= "1.2.0"} 23 "alcotest" {>= "1.4.0" & with-test} 24 "odoc" {with-doc} 25] 26conflicts: [ 27 "ocaml-base-compiler" {>= "5.0.0~beta1"} 28 "ocaml-variants" {>= "5.0.0~beta1"} 29] 30build: [ 31 ["dune" "subst"] {dev} 32 [ 33 "dune" 34 "build" 35 "-p" 36 name 37 "-j" 38 jobs 39 "--promote-install-files=false" 40 "@install" 41 "@runtest" {with-test} 42 "@doc" {with-doc} 43 ] 44 ["dune" "install" "-p" name "--create-install-files" name] 45] 46dev-repo: "git+https://github.com/ocaml-multicore/eio.git" 47url { 48 src: 49 "https://github.com/ocaml-multicore/eio/releases/download/v0.4/eio-0.4.tbz" 50 checksum: [ 51 "sha256=774563e56bff9a7272e71258409a4bce24bb32465c7615ee8cc405d424355df0" 52 "sha512=03dff43b73b3b79987504d98439e65babe8c59ca8b72fd0718b87923b8a019ce41ef992ac304c3000523e163b9a4dfe43bbf6683641e175e9fe74b33ed9a5ed9" 53 ] 54} 55x-commit-hash: "34d1d26ac4f5d5b506a7a216c2c205d83f09110c"