-
Notifications
You must be signed in to change notification settings - Fork 9
/
dune-project
156 lines (142 loc) · 2.79 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
(lang dune 3.7)
(generate_opam_files true)
(using mdx 0.3)
(name grpc)
(license "BSD-3-Clause")
(authors
"Andrew Jeffery <dev@jeffas.io>"
"Daniel Quernheim <quernd@users.noreply.github.com>"
"Michael Bacarella <m@bacarella.com>"
"Sven Anderson <sven@anderson.de>"
"Tim McGilchrist <timmcgil@gmail.com>"
"Wojtek Czekalski <me@wczekalski.com>"
"dimitris.mostrous <dimitris.mostrous@gmail.com>")
(maintainers "Daniel Quernheim <grpc@quernd.uber.space>")
(source
(github dialohq/ocaml-grpc))
(documentation "https://dialohq.github.io/ocaml-grpc")
(package
(name grpc)
(synopsis "A modular gRPC library")
(description
"This library builds some of the signatures and implementations of gRPC functionality. This is used in the more specialised package `grpc-lwt` which has more machinery, however this library can also be used to do some bits yourself.")
(tags
(network rpc serialisation))
(depends
(ocaml
(>= 4.08))
(bigstringaf
(>= 0.9.1))
(h2
(>= 0.9.0))
ppx_deriving
(uri
(>= 4.0.0))))
(package
(name grpc-lwt)
(synopsis "An Lwt implementation of gRPC")
(description
"Functionality for building gRPC services and rpcs with `lwt`.")
(tags
(network rpc serialisation))
(depends
(grpc
(= :version))
(h2
(>= 0.9.0))
(lwt
(>= 5.3.0))
stringext))
(package
(name grpc-async)
(synopsis "An Async implementation of gRPC")
(description
"Functionality for building gRPC services and rpcs with `async`.")
(tags
(network rpc serialisation))
(depends
(ocaml
(>= 4.11))
(async
(>= v0.17))
(grpc
(= :version))
(h2
(>= 0.9.0))
(ppx_jane
(>= v0.16.0))
stringext))
(package
(name grpc-eio)
(synopsis "An Eio implementation of gRPC")
(description
"Functionality for building gRPC services and rpcs with `eio`.")
(depends
(eio
(>= 0.12))
(grpc
(= :version))
(h2
(>= 0.9.0))
stringext))
(package
(name grpc-examples)
(synopsis "Various gRPC examples")
(description "Various gRPC examples.")
(tags
(network rpc serialisation))
(depends
(async
(>= v0.17.0))
cohttp
cohttp-lwt
cohttp-lwt-unix
conduit-lwt-unix
(core
(>= v0.16.2))
(core_unix
(>= v0.16.0))
(eio_main
(>= 0.12))
grpc-async
grpc-eio
grpc-lwt
(h2
(>= 0.9.0))
h2-async
h2-eio
h2-lwt-unix
(lwt
(>= 5.3.0))
(lwt_ssl
(>= 1.2.0))
(mdx
(and
(>= 2.2.1)
:with-test))
(ocaml-protoc-plugin
(>= 4.5))
ppx_deriving
ppx_deriving_yojson
(ppx_jane
(>= v0.16.0))
stringext
tls-async
(uri
(>= 4.0.0))))
(package
(name grpc-bench)
(synopsis "Benchmarking package for gRPC")
(description "Benchmarking package for gRPC.")
(tags
(network rpc serialisation benchmark))
(depends
(bechamel
(>= 0.4.0))
(bechamel-notty
(>= 0.4.0))
(bigstringaf
(>= 0.9.1))
grpc
(notty
(>= 0.2.3))))