this repo has no description
1opam-version: "2.0"
2
3synopsis: "Binding to libuv: cross-platform asynchronous I/O"
4
5license: "MIT"
6homepage: "https://github.com/aantron/luv"
7doc: "https://aantron.github.io/luv"
8bug-reports: "https://github.com/aantron/luv/issues"
9
10authors: "Anton Bachin <antonbachin@yahoo.com>"
11maintainer: "Anton Bachin <antonbachin@yahoo.com>"
12dev-repo: "git+https://github.com/aantron/luv.git"
13
14depends: [
15 "base-unix" {build}
16 "conf-python-3" {build}
17 "ctypes" {>= "0.13.0"}
18 "dune" {>= "2.0.0"}
19 "ocaml" {>= "4.02.0"}
20 "result"
21
22 "alcotest" {dev & >= "0.8.1"}
23]
24build: [
25 ["dune" "build" "-p" name "-j" jobs]
26]
27
28available: [
29 arch != "s390x"
30]
31
32description: "Luv is a binding to libuv, the cross-platform C library that does
33asynchronous I/O in Node.js and runs its main loop.
34
35Besides asynchronous I/O, libuv also supports multiprocessing and
36multithreading. Multiple event loops can be run in different threads. libuv also
37exposes a lot of other functionality, amounting to a full OS API, and an
38alternative to the standard module Unix."
39
40url {
41 src:
42 "https://github.com/aantron/luv/releases/download/0.5.0/luv-0.5.0.tar.gz"
43 checksum: [
44 "sha256=bc5db8f8754a5154784ec4da85bb345bde247947a6c28a934806e231ba185d7e"
45 "md5=2b7caeeb0227e8854fd7cc1c0f22c9a4"
46 ]
47}