-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdune-project
More file actions
189 lines (172 loc) · 3.06 KB
/
Copy pathdune-project
File metadata and controls
189 lines (172 loc) · 3.06 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
(lang dune 3.17)
(name cmdlang)
(generate_opam_files)
(license MIT)
(authors "Mathieu Barbin")
(maintainers "Mathieu Barbin <opensource@mbarbin.org>")
(source
(github mbarbin/cmdlang))
(documentation "https://mbarbin.github.io/cmdlang/")
(using mdx 0.4)
;; The value for the [implicit_transitive_deps] option is set during the CI
;; depending on the OCaml compiler version.
;;
;; This will be set to [false] iif [ocaml-version >= 5.2].
;;
;; For packaging purposes with older ocaml, it is simpler atm if the option is
;; set to [true] in the main branch.
;;
;; See: [.github/workflows/edit_dune_project_dot_ml].
(implicit_transitive_deps true)
(package
(name cmdlang)
(synopsis "Declarative Command-line Parsing for OCaml")
(depends
(ocaml
(>= 4.14))))
(package
(name cmdlang-to-base)
(synopsis "Convert cmdlang Parsers to core.command")
(depends
(ocaml
(>= 5.2))
(base
(>= v0.17))
(cmdlang
(= :version))
(core
(>= v0.17))))
(package
(name cmdlang-to-cmdliner)
(synopsis "Convert cmdlang Parsers to cmdliner")
(depends
(ocaml
(>= 4.14))
(cmdlang
(= :version))
(cmdliner
(>= 1.3.0))))
(package
(name cmdlang-to-climate)
(synopsis "Convert cmdlang Parsers to climate")
(depends
(ocaml
(>= 4.14))
(climate
(>= 0.8.0))
(cmdlang
(= :version))))
(package
(name cmdlang-stdlib-runner)
(synopsis "A basic execution runner for cmdlang based on stdlib.arg")
(depends
(ocaml
(>= 4.14))
(cmdlang
(= :version))))
(package
(name cmdlang-tests)
(synopsis "Tests for cmdlang")
(depends
(ocaml
(>= 5.3))
(base
(>= v0.17))
(climate
(>= 0.8.5))
(cmdlang
(= :version))
(cmdlang-stdlib-runner
(= :version))
(cmdlang-to-base
(= :version))
(cmdlang-to-climate
(= :version))
(cmdlang-to-cmdliner
(= :version))
(cmdliner
(and
(>= 1.3.0)
(< 2.0)))
(core
(>= v0.17))
(core_unix
(>= v0.17))
(dune-build-info
(>= 3.17))
(expect_test_helpers_core
(>= v0.17))
(mdx
(>= 2.4))
(ppx_compare
(>= v0.17))
(ppx_enumerate
(>= v0.17))
(ppx_expect
(>= v0.17))
(ppx_here
(>= v0.17))
(ppx_let
(>= v0.17))
(ppx_sexp_conv
(>= v0.17))
(ppx_sexp_value
(>= v0.17))
(ppxlib
(>= 0.33))
(stdio
(>= v0.17))
(stdune
(>= 3.17))))
(package
(name cmdlang-dev)
(synopsis "Package to regroup dev targets, documentation, and more")
(allow_empty)
(depends
(ocaml
(>= 5.2))
(ocamlformat
(= 0.29.0))
(bisect_ppx
(>= 2.8.3))
(cmdlang
(= :version))
(cmdlang-stdlib-runner
(= :version))
(cmdlang-tests
(= :version))
(cmdlang-to-base
(= :version))
(cmdlang-to-climate
(= :version))
(cmdlang-to-cmdliner
(= :version))
(cmdliner
(and
(>= 1.3.0)
(< 2.0)))
conf-jq
(dune-build-info
(>= 3.17))
(mdx
(>= 2.4))
(ppx_compare
(>= v0.17))
(ppx_enumerate
(>= v0.17))
(ppx_expect
(>= v0.17))
(ppx_here
(>= v0.17))
(ppx_js_style
(>= v0.17))
(ppx_let
(>= v0.17))
(ppx_sexp_conv
(>= v0.17))
(ppx_sexp_value
(>= v0.17))
(ppxlib
(>= 0.33))
(sherlodoc
(>= 0.2))))