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" & < "2.0.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.7/eio-0.7.tbz" 51 checksum: [ 52 "sha256=675e67f343ccf37b965d15d1ee1c639d7a06431e8f08e95559133419f3488ee1" 53 "sha512=3d1bd0e5e0aa79d8858d83944d734a0efc325ed66a12a1506c3b36281db56c0216e6cb90a46e6021db1ea34cdd2567ebabe0bd687d9989495bb7cf6099e90ba7" 54 ] 55} 56x-commit-hash: "aa91a7bf813b9ab2eddeae35c17bc7439f2c0836"