eio/eunix.opam
Thomas Leonard e189fc4004 Merge fibreslib into eio
It was a bit confusing having two different API libraries. Instead of
opening `Fibreslib`, it is now suggested to open `Eio.Std`, which
exports fewer things.
2021-06-09 09:50:44 +01:00

39 lines
936 B
Plaintext

# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Eio implementation for Linux using io-uring"
description: "An eio implementation for Linux using io-uring."
maintainer: ["anil@recoil.org"]
authors: ["Anil Madhavapeddy" "Thomas Leonard"]
license: "ISC"
homepage: "https://github.com/ocaml-multicore/eio"
bug-reports: "https://github.com/ocaml-multicore/eio/issues"
depends: [
"dune" {>= "2.8"}
"ocaml-variants" {= "4.12.0+domains+effects"}
"ctf" {= version}
"eio" {= version}
"alcotest" {>= "1.4.0" & with-test}
"mdx" {with-test}
"logs" {>= "0.7.0"}
"fmt" {>= "0.8.9"}
"bigstringaf" {>= "0.7.0"}
"uring"
"bheap" {>= "2.0.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocaml-multicore/eio.git"