-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
53 lines (47 loc) · 1022 Bytes
/
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
48
49
50
51
52
[package]
description = "Ethereum Debug"
name = "edb"
version = "0.0.1"
license = "GPL-3.0"
authors = ["Andrew Plaza <aplaza@liquidthink.net>"]
edition = '2018'
[[bin]]
path = "edb/main.rs"
name = "edb"
[workspace]
members = [
"compiler/",
"core",
"emul/",
"solc_api",
"test_helpers",
"DEMO/DEPLOY/deploy"
]
[dependencies]
# vyper = { path = "./vyper" }
termion = "1.5"
clap = { version = "2.32", features = ["yaml"] }
http = "0.1"
tokio-core = "0.1"
futures = "0.1"
failure = "0.1"
log = "*"
fern = { version = "0.5", features = ["colored"] }
colored = "1.6"
dirs = "1.0"
chrono = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
hex = "0.3"
ethereum-types = "0.4"
etcommon-bigint = "0.2.9"
bytes = "0.4"
ethabi = "6.1"
web3 = "0.5"
sputnikvm = "0.10.1"
jsonrpc-core = { git = "https://github.com/paritytech/jsonrpc" }
jsonrpc-minihttp-server = { git = "https://github.com/paritytech/jsonrpc" }
edb-core = { path = "./core" }
[dev-dependencies]
edb_test_helpers = { path = "./test_helpers" }