this repo has no description
1opam-version: "2.0"
2synopsis: "Simple Event Library"
3description:
4 "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"
5maintainer: ["Enrico Tassi <enrico.tassi@inria.fr>"]
6authors: ["Enrico Tassi"]
7license: "MIT"
8tags: ["event" "input" "output"]
9homepage: "https://github.com/gares/sel"
10bug-reports: "https://github.com/gares/sel/issues"
11depends: [
12 "ocaml" {>= "4.08"}
13 "dune" {>= "3.5"}
14 "ppx_deriving"
15 "ppx_sexp_conv" {with-test}
16 "ppx_inline_test" {with-test}
17 "ppx_assert" {with-test}
18 "odoc" {with-doc}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/gares/sel.git"
35url {
36 src: "https://github.com/gares/sel/releases/download/v0.4.0/sel-0.4.0.tbz"
37 checksum: [
38 "sha256=4a9d1e49e2b216632f390ade6ea2ca3fe1db1d00740f47809848c3cf19c52f52"
39 "sha512=527f5727de585f529490bcfe1a991c5b55d9cf81e5f5bbdc26b391a2f7d378d9ffcb00e4f21ccfd8affba74637c3d89c9b6f72456ea1723d402f97bfe898cd90"
40 ]
41}
42x-commit-hash: "b52aad6eb4696aaff83fb2b95ca5b880dbbbb215"