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