-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdune-project
41 lines (39 loc) · 1.11 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
(lang dune 2.7)
(using menhir 2.0)
(name archetype)
(allow_approximate_merlin)
(generate_opam_files true)
(license MIT)
(authors
"Benoit Rognier <[email protected]>"
"Guillaume Duhamel <[email protected]>"
"Pierre-Yves Strub <[email protected]>")
(maintainers "The Archetype development team <[email protected]>")
(homepage "https://archetype-lang.org")
(bug_reports "https://github.com/completium/archetype-lang/issues")
(documentation "https://archetype-lang.org")
(source (uri "git+https://github.com/completium/archetype-lang.git"))
(package
(name archetype)
(synopsis "Archetype language compiler")
(description "\
Archetype is a general purpose language to develop smart contracts
on the Tezos blockchain, with a specific focus on contract security
")
(depends
(ocaml (>= 4.08.0))
(menhir (>= 20180523))
num
(yojson (>= 1.6.0))
ppx_deriving
ppx_deriving_yojson
uri
(visitors (>= 20200207))
(js_of_ocaml (>= 3.9.0))
(js_of_ocaml-ppx (>= 3.9.0))
(hex (>= 1.4.0))
xmlm
alcotest
)
(conflicts "ocaml-option-bytecode-only")
)