forked from Cionn3/revm-by-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (35 loc) · 891 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
[package]
name = "revm-by-example"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ethers = { version = "=2.0.7", features = ["abigen", "ws"] }
revm = { version = "7.1.0", features = [
"serde",
"std",
"optional_block_gas_limit",
"optional_no_base_fee",
"optional_balance_check",
"optional_eip3607",
"optional_gas_refund",
] }
tokio = { version = "1.35.1", features = ["full"] }
thiserror = "1.0.37"
sha3 = "0.10.8"
ethabi = "18.0.0"
anyhow = "1.0.75"
futures = "0.3.5"
eyre = "0.6.8"
bigdecimal = "0.4.1"
hashbrown = "0.14.0"
lazy_static = "1.4.0"
[[bin]]
name = "simulate-call"
path = "src/examples/simulate_call.rs"
[[bin]]
name = "simulate-swap"
path = "src/examples/simulate_swap.rs"
[[bin]]
name = "simple-trace"
path = "src/examples/simple_trace.rs"