forked from issuu/ocaml-zmq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
45 lines (40 loc) · 1.02 KB
/
dune-project
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
37
38
39
40
41
42
43
44
45
(lang dune 2.7)
(name zmq)
(generate_opam_files true)
(source (github issuu/ocaml-zmq))
(license MIT)
(maintainers "Anders Fugmann <[email protected]>")
(package
(name zmq)
(authors "Anders Fugmann" "Pedro Borges" "Peter Zotov")
(synopsis "OCaml bindings for ZeroMQ 4.x")
(description "This library contains basic bindings for ZMQ.
Lwt aware bindings to zmq are availble though package zmq-lwt
Async aware bindings to zmq are available though package zmq-async")
(depends
(ocaml (>= 4.03.0))
conf-zmq
(ounit2 :with-test)
dune-configurator)
(conflicts
ocaml-zmq))
(package
(name zmq-async)
(authors "Rudi Grinberg")
(synopsis "Async-aware bindings to ZMQ")
(depends
(ocaml (>= 4.04.1))
(zmq (= :version))
(async_unix (>= v0.11.0))
(async_kernel (>= v0.11.0))
(base (>= v0.11.0))
(ounit2 :with-test)))
(package
(name zmq-lwt)
(authors "Anders Fugmann <[email protected]>")
(synopsis "Lwt-aware bindings to ZMQ")
(depends
(ocaml (>= 4.03.0))
(zmq (= :version))
(lwt (>= 2.6.0))
(ounit2 :with-test)))