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