-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdune-project
More file actions
69 lines (60 loc) · 1.62 KB
/
Copy pathdune-project
File metadata and controls
69 lines (60 loc) · 1.62 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
(lang dune 3.24)
(name pidgio)
(version dev)
(generate_opam_files)
(source (github cargocut/pidgio))
(license BSD-3-Clause)
(authors
"xvw <xaviervdw@gmail.com>"
"grm <grimfw@gmail.com>")
(maintainers
"d-plaindoux <d.plaindoux@free.fr>"
"xhtmlboi <xhtmlboi@gmail.com>"
"xvw <xaviervdw@gmail.com>"
"msp <spawnmick@gmail.com>"
"grm <grimfw@gmail.com>")
(package
(name pidgio)
(synopsis "Description of JSONRPC Servers on processes")
(description
"A tool for describing JSONRPC servers on processes that uses Pidgin as its format")
(depends
(ocaml (>= 5.0.0))
(primavera (>= 1.1.0))
(pidgin (>= 1.1.0))
highway
;; test setup
(alcotest (and :with-test (>= 1.9.1)))
;; dev setup
(utop :with-dev-setup)
(ocamlformat :with-dev-setup)
(ocp-indent :with-dev-setup)
(merlin :with-dev-setup)
(ocaml-lsp-server :with-dev-setup)))
(package
(name pidgio-yojson)
(synopsis "Use YOJSON as a JSON driver for Pidgio servers")
(description "Use YOJSON as a JSON driver for Pidgio servers")
(depends
(ocaml (>= 5.0.0))
(pidgio (= :version))
(yojson (>= 3.0.0))))
(package
(name pidgio-unix)
(synopsis "A pure UNIX Pidgio server")
(description "A pure UNIX Pidgio server")
(depends
(ocaml (>= 5.0.0))
(pidgio (= :version))
(pidgio-yojson (and (= :version) :with-test))
(virtfs :with-test)))
(package
(name pidgio-eio)
(synopsis "An EIO Pidgio server")
(description "An EIO Pidgio server")
(depends
(ocaml (>= 5.0.0))
(pidgio (= :version))
(eio (>= 1.5))
(eio_main (>= 1.5))
(pidgio-yojson (and (= :version) :with-test))))