-
Notifications
You must be signed in to change notification settings - Fork 78
/
scilla.opam
69 lines (69 loc) · 2.44 KB
/
scilla.opam
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
opam-version: "2.0"
maintainer: "ilya@zilliqa.com"
authors: ["Zilliqa Research Pvt. Ltd."]
homepage: "https://scilla-lang.org"
bug-reports: "https://github.com/Zilliqa/scilla/issues"
dev-repo: "git+https://github.com/Zilliqa/scilla.git"
license: "GPL-3.0-only"
depends: [
"angstrom" {>= "0.11.0" & < "0.16~"}
"bisect_ppx" {>= "2.0.0" & < "2.9~"}
"bitstring" {>= "3.1.0" & < "4.2~"}
"camlp-streams" {>= "5.0.1" & < "5.1~"}
"cmdliner" {>= "1.1.1" & < "1.2~"}
"conf-boost"
"conf-cmake" {build}
"conf-gcc" {build}
"conf-gmp"
"conf-g++" {build}
"conf-libffi"
"conf-libpcre"
"conf-m4" {build}
"conf-openssl"
"conf-pkg-config" {build}
"conf-zlib"
"core" {>= "v0.15.0" & < "v0.16~"}
"core_unix" {>= "v0.15.0" & < "v0.16~"}
"dune" {>= "2.7"}
"cryptokit" {>= "1.13" & < "1.18~"}
"ctypes" {>= "0.14.0" & < "0.21~"}
"ctypes-foreign"
"fileutils" {>= "0.5.3" & < "0.7~"}
"hex" {>= "1.3.0" & < "1.6~"}
"menhir"
"ocaml" {>= "4.12.0" & < "4.15~"}
"ocamlgraph" {>= "2.0.0" & < "2.1~"}
"ocamlformat" {= "0.22.4"}
"ocaml-protoc" {>= "1.2.0" & < "2.3~"}
"ounit" {= "2.2.6"}
"patdiff" {>= "v0.15.0" & < "v0.16~"}
"ppx_deriving" {>= "4.2.1" & < "5.3~"}
"ppx_sexp_conv" {>= "v0.15.0" & < "v0.16~"}
"ppx_compare" {>= "v0.15.0" & < "v0.16~"}
"ppx_deriving_rpc" {>= "6.0.0" & < "10.0~"}
"ppx_deriving_yojson" {>= "3.0.0" & < "4.0"}
"ppx_string_interpolation" {>= "1.0.1" & < "1.1~"}
"pprint" {= "20220103"}
"qcheck" {>= "0.19.1" & < "0.20~"}
"vcpkg-secp256k1"
"seq"
"stdint" {>= "0.5.1" & < "0.8~"}
"yojson" {>= "1.7.0" & < "2.1~"}
]
build: [
[ "./scripts/build_deps.sh" ]
[ "dune" "build" "-p" name "-j" jobs ]
]
synopsis: "Scilla: Safe-By-Design Smart Contract Language"
description: """
Scilla, short for Smart Contract Intermediate-Level Language,
is an intermediate-level smart contract language being developed for Zilliqa.
Scilla has been designed as a principled language with smart contract safety in mind.
Scilla imposes a structure on smart contracts that will make applications less
vulnerable to attacks by eliminating certain known vulnerabilities directly at
the language-level. Furthermore, the principled structure of Scilla will make
applications inherently more secure and amenable to formal verification.
The language is being developed hand-in-hand with formalization of its semantics and
its embedding into the Coq proof assistant — a state-of-the art tool for
mechanized proofs about properties of programs.
"""