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 "ocaml-system" {< "5.0.0~beta1"} 30] 31build: [ 32 ["dune" "subst"] {dev} 33 [ 34 "dune" 35 "build" 36 "-p" 37 name 38 "-j" 39 jobs 40 "--promote-install-files=false" 41 "@install" 42 "@runtest" {with-test} 43 "@doc" {with-doc} 44 ] 45 ["dune" "install" "-p" name "--create-install-files" name] 46] 47dev-repo: "git+https://github.com/ocaml-multicore/eio.git" 48url { 49 src: 50 "https://github.com/ocaml-multicore/eio/releases/download/v0.6/eio-0.6.tbz" 51 checksum: [ 52 "sha256=ead3eea352dd3d7d11a81ffdbeee6ca94d5e6b3f46de264b4e59689360b3ef38" 53 "sha512=0543643da7861f533f9b7ebee8aa30a6868b48ae1e19211666a9b860e9ff8d8a9e135f214a4603d0329f2027277701f6ffd900b6fba3405a538eebc301edaf29" 54 ] 55} 56x-commit-hash: "9faa07bb934e7e44521f84eec110429faaab8ed4"