-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
50 lines (40 loc) · 894 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
[package]
edition = "2021"
name = "univ3-revm-arbitrage"
publish = false
version = "0.0.0"
rust-version = "1.81.0"
[dependencies]
alloy = { version = "0.5.4", features = ["full", "node-bindings"] }
anyhow = "1.0.89"
cacache = { version = "13.0.0", default-features = false, features = [
"tokio-runtime",
"mmap",
] }
env_logger = "0.11.5"
revm = { version = "17.1.0", features = ["alloydb"] }
tokio = { version = "1.40.0", features = ["full"] }
[[bin]]
name = "eth_call_one"
path = "src/eth_call_one.rs"
[[bin]]
name = "eth_call"
path = "src/eth_call.rs"
[[bin]]
name = "anvil"
path = "src/anvil.rs"
[[bin]]
name = "revm"
path = "src/revm.rs"
[[bin]]
name = "revm_cached"
path = "src/revm_cached.rs"
[[bin]]
name = "revm_quoter"
path = "src/revm_quoter.rs"
[[bin]]
name = "revm_validate"
path = "src/revm_validate.rs"
[[bin]]
name = "revm_arbitrage"
path = "src/revm_arbitrage.rs"