this repo has no description
1opam-version: "2.0" 2synopsis: "Bindings for the Linux epoll system call" 3description: """\ 4Bindings for the Linux epoll system call. The binding avoids 5most allocation in the event loop by iterating over all file 6descriptors that are reported as ready.""" 7maintainer: "Christian Lindig <christian.lindig@cloud.com>" 8authors: "Christian Lindig <christian.lindig@cloud.com>" 9license: "MIT" 10homepage: "https://github.com/lindig/polly" 11bug-reports: "https://github.com/lindig/polly/issues" 12depends: [ 13 "dune" {>= "2.0"} 14 "ocaml" {>= "4.08.0"} 15 "cmdliner" {>= "1.1.0"} 16 "base-unix" 17 "conf-linux-libc-dev" 18] 19build: ["dune" "build" "-p" name "-j" jobs "@install"] 20dev-repo: "git+https://github.com/lindig/polly.git" 21url { 22 src: 23 "https://github.com/lindig/polly/releases/download/0.4.1/polly-0.4.1.tbz" 24 checksum: [ 25 "sha256=d96859f459fc9c072600e0446593959ff34bb82efc38f00b3d14c464ced10ad6" 26 "sha512=76ebec8f3581f8223d50094cbf592c66bbc8f3c7e97a027e10327e0813ca6ecdc041fd93b8a0e80aa4c6d391e43a806d37031f26d04716b26ebad72905debc7e" 27 ] 28} 29x-commit-hash: "2bab081f360329739517cb8f2b6ac9b507a5ee27"