-
Notifications
You must be signed in to change notification settings - Fork 4
/
dune-project
43 lines (33 loc) · 926 Bytes
/
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
(lang dune 2.7)
(implicit_transitive_deps false)
(generate_opam_files true)
(name grpc)
(license "BSD-3-Clause")
(authors "Andrew Jeffery <[email protected]>")
(maintainers "Andrew Jeffery <[email protected]>")
(source
(github jeffa5/ocaml-grpc))
(documentation "https://jeffas.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.")
(depends
(ocaml
(>= 4.08))
(uri
(>= 4.0.0))
(ocaml-protoc
(>= 2.0.0))
(h2
(>= 0.7.0))))
(package
(name grpc-lwt)
(synopsis "An Lwt implementation of gRPC")
(description "Functionality for building gRPC services and rpcs with `lwt`.")
(depends
(grpc :dev)
(lwt
(>= 5.0.0))
(h2 :dev)))