eio/dune-project
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

52 lines
1.3 KiB
Plaintext

(lang dune 2.8)
(name eunix)
(generate_opam_files true)
(source (github ocaml-multicore/eio))
(license ISC)
(authors "Anil Madhavapeddy" "Thomas Leonard")
(maintainers "anil@recoil.org")
(package
(name eio)
(synopsis "Effect-based direct-style IO API for OCaml")
(description
"An effect-based IO API for multicore OCaml with fibres.")
(depends
(ctf (= :version))
(cstruct (>= 6.0.0))
lwt-dllist
(alcotest (and (>= 1.4.0) :with-test))))
(package
(name eunix)
(synopsis "Eio implementation for Linux using io-uring")
(description
"An eio implementation for Linux using io-uring.")
(depends
(ocaml-variants (= "4.12.0+domains+effects"))
(ctf (= :version))
(eio (= :version))
(alcotest (and (>= 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))))
(package
(name ctf)
(synopsis "CTF tracing")
(description "Trace IO events.")
(depends
(alcotest (and (>= 1.4.0) :with-test))
(ppx_cstruct (>= 6.0.0))
(ocplib-endian (>= 1.1))
(mtime (>= 1.2.0))
(cstruct (>= 6.0.0))))
(package
(name eio_main)
(synopsis "Effect-based direct-style IO mainloop for OCaml")
(description
"Selects an appropriate Eio backend for the current platform.")
(depends
(eunix (= :version))))
(using mdx 0.1)