-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdomain-local-timeout.opam
36 lines (36 loc) · 1.03 KB
/
domain-local-timeout.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A scheduler independent timeout mechanism"
description:
"A low level mechanism intended for writing higher level libraries that need to be able to have scheduler friendly timeouts."
maintainer: ["Vesa Karvonen <vesa.a.j.k@gmail.com>"]
authors: ["Vesa Karvonen <vesa.a.j.k@gmail.com>"]
license: "ISC"
homepage: "https://github.com/ocaml-multicore/domain-local-timeout"
bug-reports: "https://github.com/ocaml-multicore/domain-local-timeout/issues"
depends: [
"dune" {>= "3.3"}
"ocaml" {>= "4.12.0"}
"psq" {>= "0.2.1"}
"mtime" {>= "2.0.0"}
"thread-table" {>= "1.0.0"}
"domain-local-await" {>= "1.0.0" & with-test}
"mdx" {>= "2.3.0" & with-test}
"alcotest" {>= "1.7.0" & with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/ocaml-multicore/domain-local-timeout.git"