-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
205 lines (187 loc) · 3.09 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
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
(lang dune 3.0)
(using mdx 0.2)
(generate_opam_files true)
(source
(github imandra-ai/imandrax-api))
(name imandrax-api)
;; keep in sync with imandrax
(version 0.11)
(authors "the imandrax team")
(maintainers "imandra.ai")
; from imandrax
(package
(name imandrax-api)
(synopsis "Public API and types for ImandraX")
(depends
(ocaml
(>= 4.12.0))
(containers
(>= 3.4))
(iter
(>= 1.0))
(zarith
(>= 1.12))
(imandra-proof-system
(= :version))
ppx_deriving
ppx_deriving_yojson
imandrakit
imandrakit-log
imandrakit-io
(pbrt
(>= 3.0))
(pbrt_yojson
(>= 3.0))
(ocaml-protoc
(and
(>= 3.1.1)
:with-dev-setup))
; TODO: bump to next release with the static build fix
(cryptokit
(>= 0.19))
(odoc :with-doc))
(depopts camlzip)
(conflicts
(containers
(= 3.13))))
(package
(name imandrax-api-ppx)
(synopsis "Ppx-deriving for ImandraX API")
(depends
(ocaml
(>= 4.12.0))
(imandrax-api :version)
ppxlib
(odoc :with-doc)))
(package
(name imandrax-api-client)
(synopsis "RPC client for ImandraX's API (transport agnostic)")
(depends
(containers
(and
(>= 3.0)
:with-test))
(trace
(>= 0.6))
logs
(ocaml
(>= 4.14))
(moonpool
(and
(>= 0.7)
(< 0.8)))
(pbrt
(>= 3.0))
(pbrt_yojson
(>= 3.0))
(pbrt_services
(>= 3.0))))
(package
(name imandrax-api-client-ezcurl)
(synopsis "RPC client for ImandraX's API using Ezcurl")
(depends
(imandrax-api-client
(= :version))
imandrakit-thread
ezcurl
(moonpool
(and
(>= 0.7)
(< 0.8)))
(trace
(>= 0.6))
(pbrt
(>= 3.0))
(pbrt_yojson
(>= 3.0))
(pbrt_services
(>= 3.0))))
(package
(name imandrax-api-client-cohttp)
(synopsis "RPC client for ImandraX's API using cohttp + lwt")
(depends
(imandrax-api-client
(= :version))
lwt
twirp_cohttp_lwt_unix
(trace
(>= 0.6))
(pbrt
(>= 3.0))
(pbrt_yojson
(>= 3.0))
(pbrt_services
(>= 3.0))))
(package
(name imandrax-api-top)
(synopsis "Interactive toplevel for ImandraX's API")
(depends
(ocaml
(>= 5.0))
(containers
(>= 3.0))
(imandrax-api-client
(= :version))
(imandrax-api-client-ezcurl
(= :version))
(trace
(>= 0.6))
ppx_deriving))
(package
(name imandrax-api-cli)
(synopsis "CLI for ImandraX's API")
(depends
(ocaml
(>= 5.0))
(linenoise
(>= 1.4))
(containers
(>= 3.0))
(imandrax-api-client
(= :version))
(imandrax-api-client-ezcurl
(= :version))
(moonpool
(and
(>= 0.7)
(< 0.8)))
(trace
(>= 0.6))
uuidm
xdg
webbrowser
ppx_deriving
trace-tef
(tiny_httpd
(>= 0.16))
(ppx_subliner
(>= 0.2))
(linenoise
(and
(>= 1.4)
(< 2.0)))))
(package
(name imandra-proof-system)
(synopsis "Description and codegen for Imandra's durable proof system")
(depends
(ocaml
(>= 4.12))
(yojson
(>= 1.6))
ppx_deriving
ppx_deriving_yojson
imandrakit
(containers
(>= 3.0))
(cbor :with-test)))
(package
(name imandrax-api-prelude)
(synopsis "ImandraX Prelude")
(depends
(ocaml
(>= 4.12))
ppx_deriving
(containers
(>= 3.0))
zarith
imandrax-api-ppx))