-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
69 lines (61 loc) · 1.59 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "dv"
version = "0.9.0"
edition = "2021"
[[bin]]
name = "dv"
path = "src/dvf.rs"
[[bin]]
name = "fetch-from-etherscan"
path = "src/fetch.rs"
[[bin]]
name = "gentest"
path = "src/gentest.rs"
[[bin]]
name = "cached_proxy"
path = "src/cached_proxy.rs"
[lib]
name = "dvf_libs"
path = "lib/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing = "0.1.34"
tracing-subscriber = { version = "0.3.11", default-features = true, features = ["env-filter", "fmt"]}
reqwest = { version = "0.11", features = ["json", "blocking"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.144", features = ["derive"] }
serde_json = "1.0.85"
substring = "1.4.5"
clap = { version = "3.1.6", features = ["derive"]}
colored = "1.0.0"
prettytable-rs = "0.10.0"
regex = "1"
bigint = "1"
tiny-keccak = { version = "2.0.0", features = ["sha3", "keccak"] }
hex = "0.4"
ethers = { version = "2.0.8", features = ["solc"] }
ethers-contract = "2.0.8"
ethers-core = { version = "2.0.8" }
ethers-etherscan = { version = "2.0.8" }
ethers-providers = "2.0.8"
ethers-signers = {version = "2.0.8", features = ["ledger", "yubi", "yubihsm"]}
ethers-solc = "2.0.8"
semver = { version = "1.0.17", features = ["serde"] }
toml = "0.7.4"
dirs-next = "2.0.0"
zip = "0.6.6"
tempfile = "3.6.0"
bytes = "1.4.0"
async-trait = "0.1.69"
thiserror = "1.0.40"
sha3 = "0.10.8"
rustc-hex = "2.1.0"
indicatif = "0.17.6"
console = "0.15.7"
actix-web = "4.7.0"
scanf = "1.2.1"
dotenv = "0.15.0"
time = "0.3.36"
[dev-dependencies]
assert_cmd = "2.0.12"
env_logger = "0.11.5"