-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (70 loc) · 1.94 KB
/
Cargo.toml
File metadata and controls
77 lines (70 loc) · 1.94 KB
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
70
71
72
73
74
75
76
77
[package]
name = "dv"
version = "0.9.1"
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]
actix-web = "4.9.0"
alloy = { version = "0.15.11", features = ["full"] }
alloy-chains = { version = "0.2.0", features = ["serde"] }
alloy-dyn-abi = { version = "1.0.0", features = ["eip712"] }
alloy-json-abi = "1.0.0"
alloy-node-bindings = "0.15.11"
alloy-rpc-types = "0.15.11"
alloy-rpc-types-trace = "0.15.11"
alloy-signer = { version = "0.15.11", features = ["eip712"] }
alloy-signer-ledger = "0.15.11"
alloy-signer-local = "0.15.11"
async-trait = "0.1.85"
bigint = "4"
bytes = "1.9.0"
clap = { version = "4.5.26", features = ["derive", "cargo"] }
colored = "3.0.0"
console = "0.15.10"
dirs-next = "2.0.0"
dotenv = "0.15.0"
foundry-block-explorers = "0.14.0"
foundry-compilers = "0.15.0"
foundry-compilers-core = "0.15.0"
hex = "0.4"
indicatif = "0.17.9"
prettytable-rs = "0.10.0"
rand = "0.8.5"
regex = "1"
reqwest = { version = "0.12", features = ["json", "blocking"] }
reth-trie = { git = "https://github.com/paradigmxyz/reth", tag = "v1.3.12"}
ruint = "1.12.4"
rustc-hex = "2.1.0"
scanf = "1.2.3"
semver = { version = "1.0.24", features = ["serde"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
sha3 = "0.10.8"
substring = "1.4.5"
tempfile = "3.20.0"
thiserror = "2.0.11"
time = "0.3.37"
tiny-keccak = { version = "2.0.2", features = ["sha3", "keccak"] }
tokio = { version = "1", features = ["full"] }
toml = "0.8.19"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", default-features = true, features = ["env-filter", "fmt"] }
zip = "2.2.2"
[dev-dependencies]
assert_cmd = "2.0.16"
env_logger = "0.11.6"