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 "ctypes" {>= "0.13.0"} 17 "dune" {>= "2.0.0"} 18 "ocaml" {>= "4.02.0"} 19 "result" 20 21 "alcotest" {with-test & >= "0.8.1"} 22 "base-unix" {with-test} 23] 24 25build: [ 26 ["dune" "build" "-p" name "-j" jobs] 27] 28 29available: [ 30 arch != "s390x" 31] 32 33description: "Luv is a binding to libuv, the cross-platform C library that does 34asynchronous I/O in Node.js and runs its main loop. 35 36Besides asynchronous I/O, libuv also supports multiprocessing and 37multithreading. Multiple event loops can be run in different threads. libuv also 38exposes a lot of other functionality, amounting to a full OS API, and an 39alternative to the standard module Unix." 40 41url { 42 src: 43 "https://github.com/aantron/luv/releases/download/0.5.6/luv-0.5.6.tar.gz" 44 checksum: [ 45 "sha256=35d8092d7a7e8d00a7ab8caf79d99e2073baf1999f5b9274de4d69078ad83685" 46 "md5=fb78fd1b179f5c9585e79b5a1c5ff644" 47 ] 48}