-
Notifications
You must be signed in to change notification settings - Fork 10
/
dune-project
108 lines (99 loc) · 2.16 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
(lang dune 2.7)
; This file was generated by drom, using drom.toml
(cram enable)
(name ocaml-solidity)
(allow_approximate_merlin)
(generate_opam_files false)
(version 0.5.3)
(formatting (enabled_for ocaml reason))
(using menhir 2.0)
(package
(name ocaml-solidity)
(synopsis "The ocaml-solidity project")
(description "\nOcaml-solidity provides a Solidity parser and typechecker\n")
(depends
(ocaml (>= 4.08.0))
ppx_inline_test
ppx_expect
odoc
ocamlformat
)
)
(package
(name solidity-common)
(synopsis "The ocaml-solidity project")
(description "\nOcaml-solidity provides a Solidity parser and typechecker\n")
(depends
(ocaml (>= 4.08.0))
zarith
(hex ( >= 1 ))
(fileutils ( >= 0.6 ))
(ez_file ( >= 0.3 ))
ppx_inline_test
ppx_expect
odoc
ocamlformat
)
)
(package
(name solidity-parser)
(synopsis "The ocaml-solidity project")
(description "\nOcaml-solidity provides a Solidity parser and typechecker\n")
(depends
(ocaml (>= 4.08.0))
(solidity-common (= version))
(hex ( >= 1 ))
menhir
ppx_inline_test
ppx_expect
odoc
ocamlformat
)
)
(package
(name solidity-typechecker)
(synopsis "The ocaml-solidity project")
(description "\nOcaml-solidity provides a Solidity parser and typechecker\n")
(depends
(ocaml (>= 4.08.0))
(uutf ( >= 1 ))
(solidity-parser (= version))
(solidity-common (= version))
ez_hash
ppx_inline_test
ppx_expect
odoc
ocamlformat
)
)
(package
(name solidity-test)
(synopsis "The ocaml-solidity project")
(description "\nOcaml-solidity provides a Solidity parser and typechecker\n")
(depends
(ocaml (>= 4.08.0))
(solidity-typechecker (= version))
(solidity-parser (= version))
(solidity-common (= version))
ppx_inline_test
ppx_expect
odoc
ocamlformat
)
)
(package
(name solidity-alcotest)
(synopsis "The ocaml-solidity project")
(description "\nOcaml-solidity provides a Solidity parser and typechecker\n")
(depends
(ocaml (>= 4.08.0))
(solidity-typechecker (= version))
(solidity-parser (= version))
(solidity-common (= version))
(alcotest ( >= 1.2 ))
ppx_inline_test
ppx_expect
odoc
ocamlformat
)
)