-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (48 loc) · 1.43 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
[package]
name = "EThDexMev"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
alloy-provider = { git = "https://github.com/alloy-rs/alloy.git", rev = "44b8a6d", default-features = false, features = [
"reqwest",
] }
reqwest = { version = "0.12", features = ["json", "default-tls"] }
ethers = { git = "https://github.com/gakonst/ethers-rs", features = [
"ws",
"rustls",
"abigen",
"ipc",
] }
alloy-sol-types = { version = "0.7.0", default-features = false, features = [
"std",
] }
csv = "1.1"
tokio = { version = "1.5", features = ["macros", "rt-multi-thread"] }
dotenv = "0.15.0"
env_logger = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
alloy-transport-http = { git = "https://github.com/alloy-rs/alloy.git", rev = "44b8a6d" }
hex = "0.4.3"
crossbeam-channel = "0.5.8"
ethers-core = "2.0.2"
anyhow = "1.0"
log = "0.4.17"
crossbeam-utils = "0.8.15"
bus = "2.4.0"
futures = "0.3.5"
thiserror = "1.0.37"
revm = { git = "https://github.com/bluealloy/revm", rev = "d54bd99", features = [
"alloydb",
] }
eyre = "0.6.8"
hashbrown = "0.13.2"
fern = { version = "0.6", features = ["colored"] }
chrono = "0.4.24"
rayon = "1.7"
indicatif = "0.17.3"
ctrlc = { version = "3.0", features = ["termination"] }
axum = { version = "0.6.18" }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }