forked from hyperledger-solang/solang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (43 loc) · 1.13 KB
/
Cargo.toml
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
[package]
name = "solang"
version = "0.1.4"
authors = ["Sean Young <[email protected]>"]
homepage = "https://github.com/hyperledger-labs/solang"
documentation = "https://solang.readthedocs.io/"
license = "Apache-2.0 OR MIT"
build = "build.rs"
description = "Solang Solidity Compiler"
keywords = [ "solidity", "compiler", "ewasm", "llvm", "substrate" ]
[build-dependencies]
lalrpop = "0.19"
[dependencies]
lalrpop-util = "0.19"
regex = "1"
num-bigint = "0.3"
num-traits = "0.2"
num-derive = "0.3"
parity-wasm = "0.42"
clap = "2.33"
lazy_static = "1.4"
hex = "0.4"
tiny-keccak = { version = "2.0", features = ["keccak"] }
serde_json = "1.0"
serde = "1.0"
serde_derive = { version = "1.0" }
inkwell = { version = "0.1.0-llvm10sample", features = ["target-webassembly", "llvm10-0"] }
blake2-rfc = "0.2.18"
phf = { version = "0.8", features = ["macros"] }
unicode-xid = "0.2.0"
handlebars = "3.4"
contract-metadata = "0.1.0"
semver = { version = "0.10.0", features = ["serde"] }
[dev-dependencies]
parity-scale-codec-derive = "1.2"
parity-scale-codec = "1.3"
ethabi = "12.0"
ethereum-types = "0.9"
wasmi = "0.6"
rand = "0.7"
sha2 = "0.9"
[profile.release]
lto = true