-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
53 lines (46 loc) · 1.86 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
51
52
53
[package]
name = "suave-andromeda-revm"
version = "0.1.0"
edition = "2021"
[features]
external_services = []
redis_external_services = ["external_services"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = "1.34.0"
async-std = { version = "1", features = ["attributes", "tokio1"] }
sha2 = { version = "0.10", features = ["std"], default-features = false }
futures = "0.3"
log = { version = "0.4", features = ["std"] }
ethers = "2.0.11"
revm = { git = "https://github.com/flashbots/revm.git", branch = "extensible-precompiles", features = ["serde"] }
helios = { git = "https://github.com/a16z/helios", branch = "master" }
common = { git = "https://github.com/a16z/helios", branch = "master" }
lazy_static = { version = "1.4.0" }
execution = { git = "https://github.com/a16z/helios", branch = "master" }
clap = { version = "4.4.11", features = ["derive"] }
serde = "1.0.193"
serde_json = "1.0.108"
# consensus
consensus = { git = "https://github.com/a16z/helios", branch = "master" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth", tag = "v0.1.0-alpha.11"}
ssz-rs = { package = "ssz_rs", version = "0.9.0" }
eyre = "0.6.8"
tracing = "0.1.37"
once_cell = "1.19.0"
reqwest = { version = "0.11.22", features = ["blocking"] }
tiny_http = "0.12.0"
regex = "1.10.3"
redis = { version = "0.24.0", features = ["tokio-comp", "connection-manager"] }
httptest = "0.15.5"
rcgen = "0.13.1"
p256 = "0.13.2"
[dev-dependencies]
rustls-webpki = "0.102.5"
[patch."https://github.com/bluealloy/revm"]
revm = { git = "https://github.com/flashbots/revm.git", branch = "extensible-precompiles" }
revm-primitives = { git = "https://github.com/flashbots/revm.git", branch = "extensible-precompiles" }
[[bin]]
name = "services_manager"
required-features = ["external_services"]
path = "src/external_services/bin/services_manager.rs"