-
Notifications
You must be signed in to change notification settings - Fork 5
/
dune-project
50 lines (42 loc) · 961 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
50
(lang dune 2.7)
(name gobview)
(license MIT)
(maintainers
"Kerem Cakirer <[email protected]>"
"Michael Schwarz <[email protected]>")
(authors
"Kerem Cakirer <[email protected]>"
"Alex Micheli <[email protected]>")
(source
(github goblint/gobview))
(generate_opam_files true)
(implicit_transitive_deps false)
(package
(name gobview)
(synopsis "Web frontend for Goblint")
(depends
dune
(ocaml (>= 4.14.0))
reason
batteries
cohttp-lwt
cohttp-lwt-unix
cohttp-server-lwt-unix
fileutils
jsonrpc
lwt
lwt_ppx
yojson
ppx_yojson_conv ; TODO: switch to ppx_deriving_yojson like Goblint itself
conduit-lwt-unix
jsoo-react
(js_of_ocaml (< 5.1.0)) ; on newer versions: exception Failure("caml_register_global: cannot locate Dynlink_compilerlibs.Binutils")
js_of_ocaml-lwt
js_of_ocaml-ppx
(goblint-cil (>= 2.0.0))
ctypes_stubs_js
integers_stubs_js
zarith_stubs_js
(ocamlformat :dev))
(conflicts
mtime))