-
Notifications
You must be signed in to change notification settings - Fork 2
/
dune-project
159 lines (147 loc) · 2.2 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
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
(lang dune 3.17)
(name provider)
(generate_opam_files)
(license ISC)
(authors "Mathieu Barbin")
(maintainers "Mathieu Barbin <[email protected]>")
(source
(github mbarbin/provider))
(documentation "https://mbarbin.github.io/provider/")
(using mdx 0.4)
(implicit_transitive_deps false)
(package
(name provider)
(synopsis "Dynamic Dispatch with Traits")
(depends
(ocaml
(>= 4.14))
(sexplib0
(and
(>= v0.16)
(< v0.18)))))
(package
(name provider-tests)
(synopsis "Tests for provider")
(depends
(ocaml
(>= 4.14))
(base
(and
(>= v0.16)
(< v0.18)))
(expect_test_helpers_core
(and
(>= v0.16)
(< v0.18)))
(ppx_compare
(and
(>= v0.16)
(< v0.18)))
(ppx_enumerate
(and
(>= v0.16)
(< v0.18)))
(ppx_expect
(and
(>= v0.16)
(< v0.18)))
(ppx_hash
(and
(>= v0.16)
(< v0.18)))
(ppx_here
(and
(>= v0.16)
(< v0.18)))
(ppx_let
(and
(>= v0.16)
(< v0.18)))
(ppx_sexp_conv
(and
(>= v0.16)
(< v0.18)))
(ppx_sexp_value
(and
(>= v0.16)
(< v0.18)))
(ppxlib
(>= 0.33))
(provider
(= :version))))
(package
(name provider-dev)
(synopsis
"Package to regroup dev targets for the provider project, documentation, and more")
(depends
(ocaml
(>= 5.2))
(ocamlformat
(and
:with-dev-setup
(= 0.27.0)))
(base
(and
(>= v0.17)
(< v0.18)))
(bisect_ppx
(and
:with-dev-setup
(>= 2.8.3)))
(eio
(>= 1.0))
(eio_main
(>= 1.0))
(expect_test_helpers_core
(and
(>= v0.17)
(< v0.18)))
(mdx
(>= 2.4))
(ppx_compare
(and
(>= v0.17)
(< v0.18)))
(ppx_enumerate
(and
(>= v0.17)
(< v0.18)))
(ppx_expect
(and
(>= v0.17)
(< v0.18)))
(ppx_hash
(and
(>= v0.17)
(< v0.18)))
(ppx_here
(and
(>= v0.17)
(< v0.18)))
(ppx_js_style
(and
:with-dev-setup
(>= v0.17)
(< v0.18)))
(ppx_let
(and
(>= v0.17)
(< v0.18)))
(ppx_sexp_conv
(and
(>= v0.17)
(< v0.18)))
(ppx_sexp_value
(and
(>= v0.17)
(< v0.18)))
(ppxlib
(>= 0.33))
(provider
(= :version))
(provider-tests
(= :version))
(sherlodoc
(and
:with-doc
(>= 0.2)))))