-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 1.3 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
[workspace]
members = [
"finality-client/libs/validator-shuffling",
"preimage-oracle",
"finality-client",
"finality-client/libs/zipline-spec",
"emulator",
"finality-client/libs/crypto",
"finality-client/libs/test-utils",
]
# this is so that when we are doing debug and release builds, we don't
# also have to build testing-utils and thus a heck ton of lighthouse
default-members = [
"finality-client/libs/validator-shuffling",
"preimage-oracle",
"finality-client",
"finality-client/libs/zipline-spec",
"emulator",
"finality-client/libs/crypto"
]
exclude = [
"zipline-state-transition-mips"
]
[workspace.dependencies]
ssz-rs = { path = "./finality-client/libs/ssz-rs/ssz-rs", default-features = false }
ethereum-consensus = { git = "https://github.com/ralexstokes/ethereum-consensus" }
[patch.crates-io]
blst = { git = "https://github.com/ec2/blst", rev = "179bf0e" }
[patch."https://github.com/ralexstokes/ethereum-consensus"]
ethereum-consensus = { git = "https://github.com/ralexstokes//ethereum-consensus", rev = "ef89b4a4ef97cdd53a66ddb52e554667aca0beb2" }
[patch."https://github.com/ralexstokes/ssz-rs"]
# patched version to build in restricted_std. Compatible with version of ethereum-consensus above
ssz-rs = { path = "./finality-client/libs/ssz-rs/ssz-rs" }