-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
47 lines (38 loc) · 947 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
[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]
alloy = { version = "0.3", features = ["full"] }
revm = { version = "14.0.2", 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"
anyhow = "1.0.75"
futures = "0.3.5"
futures-util = "0.3.30"
eyre = "0.6.8"
bigdecimal = "0.4.1"
hashbrown = "0.14.0"
lazy_static = "1.4.0"
serde_json = "1.0.107"
[[bin]]
name = "transfer"
path = "src/examples/transfer.rs"
[[bin]]
name = "simulate-swap"
path = "src/examples/simulate_swap.rs"
[[bin]]
name = "simple-trace"
path = "src/examples/simple_trace.rs"
[[bin]]
name = "revert-msg"
path = "src/examples/revert_msg.rs"