forked from jacobkaufmann/evangelion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.99 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.99 KB
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
[package]
name = "evangelion"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.75"
dashmap =" 5.5.3"
ethers = "2.0.8"
flate2 = "1.0.27"
futures-util = "0.3.28"
reqwest = { version = "0.11.20", features = ["blocking"] }
reth-interfaces = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-interfaces", version = "0.1.0-alpha.8" }
reth-payload-builder = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-payload-builder", version = "0.1.0-alpha.8" }
reth-primitives = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-primitives", version = "0.1.0-alpha.8" }
reth-provider = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-provider", version = "0.1.0-alpha.8" }
reth-rlp = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-rlp", version = "0.1.0-alpha.8" }
reth-revm = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-revm", version = "0.1.0-alpha.8" }
reth-revm-primitives = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-revm-primitives", version = "0.1.0-alpha.8" }
reth-transaction-pool = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-transaction-pool", version = "0.1.0-alpha.8" }
serde = "1.0.188"
serde_json = "1.0.105"
tokio = "1.32.0"
tokio-stream = { version = "0.1.14", features = ["sync"] }
tokio-util = { version = "0.7.8", features = ["time"] }
mev-rs = { git = "https://github.com/ralexstokes/mev-rs", package = "mev-rs" }
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus", rev = "2bcb975" }
tracing = "0.1.37"
ruint = "1.10.1"
hex = "0.4.3"
ssz_rs = "0.9.0"
[patch.crates-io]
revm = { git = "https://github.com/bluealloy/revm/", branch = "release/v25" }
revm-primitives = { git = "https://github.com/bluealloy/revm/", branch = "release/v25" }
[dev-dependencies]
rand = "0.8.5"
reth-provider = { git = "https://github.com/paradigmxyz/reth.git", package = "reth-provider", version = "0.1.0-alpha.8", features = ["test-utils"] }