-
Notifications
You must be signed in to change notification settings - Fork 8
/
dune-project
74 lines (67 loc) · 1.99 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
(lang dune 3.0)
(name gitlab)
(generate_opam_files true)
(formatting (enabled_for ocaml))
(using mdx 0.1)
(license BSD-3-clause)
(maintainers "Tim McGilchrist <[email protected]>")
(authors "Tim McGilchrist" )
(source (github tmcgilchrist/ocaml-gitlab))
(documentation "https://tmcgilchrist.github.io/ocaml-gitlab/")
(package
(name gitlab)
(depends
(ocaml (>= 4.08.0))
(uri (>= 1.9.0))
(cohttp-lwt (>= 4.0))
(atdgen (>= 2.8.0))
(yojson (>= 1.7.0))
(ISO8601 (>= 0.2.6))
stringext)
(synopsis "GitLab APIv4 OCaml library")
(description "This library provides an OCaml interface to the
[GitLab APIv4](https://docs.gitlab.com/ee/api/) (JSON).
It is compatible with [MirageOS](https://mirage.io) and also compiles to pure
JavaScript via [js_of_ocaml](http://ocsigen.org/js_of_ocaml)."))
(package
(name gitlab-unix)
(depends
(ocaml (>= 4.08.0))
(gitlab (= :version))
(cmdliner (>= 1.1.0))
(cohttp (>= 4.0))
(cohttp-lwt-unix (>= 4.0))
(tls (>= 0.11.0))
(lwt (>= 2.4.4))
stringext
base-unix
(alcotest :with-test))
(synopsis "GitLab APIv4 OCaml library")
(description "This library provides an OCaml interface to the
[Gitlab APIv4](https://docs.gitlab.com/ee/api/) (JSON).
This package installs the Unix (Lwt) version."))
(package
(name gitlab-jsoo)
(depends
(ocaml (>= 4.08.0))
(gitlab (= :version))
(cohttp (>= 4.0))
(cohttp-lwt-jsoo (>= 4.0))
(js_of_ocaml-lwt (>= 3.4.0)))
(synopsis "Gitlab APIv4 OCaml library")
(description "This library provides an OCaml interface to the
[Gitlab APIv4](https://docs.gitlab.com/ee/api/) (JSON).
This library installs the JavaScript version, which uses [js_of_ocaml](http://ocsigen.org/js_of_ocaml)."))
(package
(name lab)
(depends
(ocaml (>= 4.08.0))
(cmdliner (>= 1.1.0))
(gitlab-unix (= :version))
(cohttp-lwt-unix (>= 4.0))
(otoml (>= 0.9.0))
(fmt (>= 0.9.0))
(mdx (and (>= 2.1) :with-test)))
(synopsis "GitLab cli")
(description "Experimental GitLab cli in the style of GitHub's gh and hub commands."))
(using menhir 2.1)