-
Notifications
You must be signed in to change notification settings - Fork 33
/
dune-project
49 lines (43 loc) · 1.21 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
(lang dune 2.0)
(name ocaml-protoc)
(generate_opam_files true)
(version 3.1.1)
(maintainers "Maxime Ransan <[email protected]>" "Simon Cruanes")
(authors "Maxime Ransan <[email protected]>" "Simon Cruanes")
(source (github mransan/ocaml-protoc))
(license MIT)
(package
(name ocaml-protoc)
(synopsis "Pure OCaml compiler for .proto files")
(depends
(odoc :with-doc)
(pbrt (= :version))
(pbrt_yojson (and (= :version) :with-test))
(pbrt_services (and (= :version) :with-test))
(ocaml (>= 4.08)))
(tags (protoc protobuf codegen)))
(package
(name pbrt)
(synopsis "Runtime library for Protobuf tooling")
(depends
stdlib-shims
(odoc :with-doc)
(ocaml (>= 4.08)))
(tags (protobuf encode decode)))
(package
(name pbrt_yojson)
(synopsis "Runtime library for ocaml-protoc to support JSON encoding/decoding")
(depends
(ocaml (>= 4.08))
(odoc :with-doc)
(yojson (>= 1.6))
(base64 (>= 3.0)) )
(tags (protobuf encode decode)))
(package
(name pbrt_services)
(synopsis "Runtime library for ocaml-protoc to support RPC services")
(depends
(ocaml (>= 4.08))
(pbrt (= :version))
(pbrt_yojson (= :version)))
(tags (protobuf encode decode services rpc)))