-
Notifications
You must be signed in to change notification settings - Fork 4
/
dune-project
49 lines (45 loc) · 1020 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
44
45
46
47
48
49
(lang dune 3.8)
(using melange 0.1)
(name gcloud)
(source (github imandra-ai/ocaml-gcloud))
(authors "Matt Bray <[email protected]>" "Dave Aitken <[email protected]>")
(maintainers "Imandra <[email protected]>")
(generate_opam_files true)
(package
(name gcloud)
(synopsis "Bindings to Google Cloud Platform APIs")
(description "")
(depends
(alcotest :with-test)
(alcotest-lwt :with-test)
base64
cohttp
cohttp-lwt-unix
containers
cstruct
dune
ezgzip
jose
logs
lwt
ppx_deriving_yojson
(ppx_here :with-test)
(tls :with-test)
(x509 ( >= 0.12.0)) ;; Required for the ~sloppy:true arg becoming the default
yojson))
(package
(name gcloud-melange)
(synopsis "Bindings to Google Cloud Platform APIs")
(description "")
(depends
melange))
(package
(name gcloud-cli)
(synopsis "CLI for accessing Google Cloud Platform APIs")
(description "For when the official gcloud distribution is too heavyweight.")
(depends
gcloud
(cohttp (< 6))
cmdliner
logs
tls-lwt))