-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
36 lines (31 loc) · 1.49 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
[package]
name = "blockdreamer"
version = "0.1.0"
edition = "2021"
[features]
default = ["mainnet"]
mainnet = []
gnosis = []
[dependencies]
futures = "0.3.4"
itertools = "0.10.3"
pathfinding = "3.0.11"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
toml = "0.5"
reqwest = "0.11.11"
serde_json = "1.0.0"
eth2 = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }
eth2_network_config = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }
sensitive_url = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }
slot_clock = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }
[dev-dependencies]
proptest = "1.0.0"
[patch]
[patch.crates-io]
fixed-hash = { git = "https://github.com/paritytech/parity-common", rev="df638ab0885293d21d656dc300d39236b69ce57d" }
eth2_ssz = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }
eth2_ssz_types = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }
tree_hash = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }
eth2_serde_utils = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }
eth2_hashing = { git = "https://github.com/michaelsproul/lighthouse", branch = "skip-randao-verification" }