this repo has no description
1opam-version: "2.0" 2synopsis: "Simple Event Library" 3description: "This library is the result of our experience in using threads and the Lwt async monad to tame the problem of writing a server which has to listen and react to multiple sources of events. The library itself is just sugar atop Unix.select. You can read more about the library on https://github.com/gares/sel" 4maintainer: ["Enrico Tassi <enrico.tassi@inria.fr>"] 5authors: ["Enrico Tassi"] 6license: "MIT" 7tags: ["event" "input" "output"] 8homepage: "https://github.com/gares/sel" 9bug-reports: "https://github.com/gares/sel/issues" 10depends: [ 11 "ocaml" {>= "4.08"} 12 "dune" {>= "3.5"} 13 "ppx_deriving" 14 "ppx_sexp_conv" {with-test} 15 "ppx_inline_test" {with-test} 16 "ppx_assert" {with-test} 17 "odoc" {with-doc} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/gares/sel.git" 34url { 35 src: "https://github.com/gares/sel/releases/download/v0.3.0/sel-0.3.0.tbz" 36 checksum: [ 37 "sha256=afa7e074fbafa8318f05ebba5cfbabd1dcb804b33bce2675d80f1988d353bd1e" 38 "sha512=f571a9fc4ebca05203a6b72c4847ceb0826eee9e90615db479670a4198798ceea180026842aac6c90a7d85eb1dbd117c36c2a69b320fbe4963a84c386354ebb7" 39 ] 40} 41x-commit-hash: "8ce4012cf535feb311203a5ccc0f993b27ac4581"