Skip to content

Commit 1d366dc

Browse files
committed
[new release] iomux (0.3)
CHANGES: * Round timeouts up, not down in Poll.poll (spotted by @talex5) * Properly guard negative indexes (spotted by @talex5) * Use half the maximum fds for the leak test (@haesbaert)
1 parent 25bba47 commit 1d366dc

File tree

1 file changed

+42
-0
lines changed
  • packages/iomux/iomux.0.3

1 file changed

+42
-0
lines changed

packages/iomux/iomux.0.3/opam

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "IO Multiplexer bindings"
3+
description:
4+
"Low level bindings for Unix IO Multiplexers (poll/ppoll/kevent/epoll)"
5+
maintainer: ["Christiano Haesbaert"]
6+
authors: ["Christiano Haesbaert"]
7+
license: "ISC"
8+
tags: ["io" "multiplexing" "poll" "ppoll" "epoll" "kevent" "kqueue"]
9+
homepage: "https://github.com/haesbaert/ocaml-iomux"
10+
doc: "https://haesbaert.github.io/ocaml-iomux"
11+
bug-reports: "https://github.com/haesbaert/ocaml-iomux/issues"
12+
depends: [
13+
"ocaml" {>= "4.08"}
14+
"dune" {>= "3.6"}
15+
"dune-configurator"
16+
"alcotest" {with-test}
17+
"odoc" {with-doc}
18+
]
19+
build: [
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+
]
33+
dev-repo: "git+https://github.com/haesbaert/ocaml-iomux.git"
34+
url {
35+
src:
36+
"https://github.com/haesbaert/ocaml-iomux/releases/download/v0.3/iomux-0.3.tbz"
37+
checksum: [
38+
"sha256=ccd277bd53afd011291cb882f18eb5d05f3bba23257d8368dbc7a3d07f8453e7"
39+
"sha512=9f7cfde9b97699946e36f7dbb19d04bdd943b45729d23797c5d3200f5e0dd93de7ba172fa03e060ca8379f01bf04c7cd1369bae87430d416c911270c3b586a90"
40+
]
41+
}
42+
x-commit-hash: "b456e181582e2bc08217291bd135d7b61a727a84"

0 commit comments

Comments
 (0)