Skip to content

Commit e0bd72b

Browse files
authored
Merge of #5533
2 parents 4cad1fc + 970f3df commit e0bd72b

File tree

108 files changed

+2032
-2756
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+2032
-2756
lines changed

Cargo.lock

Lines changed: 75 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ discv5 = { version = "0.4.1", features = ["libp2p"] }
114114
env_logger = "0.9"
115115
error-chain = "0.12"
116116
ethereum-types = "0.14"
117-
ethereum_hashing = "1.0.0-beta.2"
117+
ethereum_hashing = "0.6.0"
118118
ethereum_serde_utils = "0.5.2"
119119
ethereum_ssz = "0.5"
120120
ethereum_ssz_derive = "0.5"
@@ -132,6 +132,7 @@ libsecp256k1 = "0.7"
132132
log = "0.4"
133133
lru = "0.12"
134134
maplit = "1"
135+
milhouse = "0.1"
135136
num_cpus = "1"
136137
parking_lot = "0.12"
137138
paste = "1"
@@ -144,6 +145,7 @@ rayon = "1.7"
144145
regex = "1"
145146
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "stream", "rustls-tls", "native-tls-vendored"] }
146147
ring = "0.16"
148+
rpds = "0.11"
147149
rusqlite = { version = "0.28", features = ["bundled"] }
148150
serde = { version = "1", features = ["derive"] }
149151
serde_json = "1"
@@ -156,9 +158,9 @@ slog-term = "2"
156158
sloggers = { version = "2", features = ["json"] }
157159
smallvec = "1.11.2"
158160
snap = "1"
159-
ssz_types = "0.5"
161+
ssz_types = "0.6"
160162
strum = { version = "0.24", features = ["derive"] }
161-
superstruct = "0.6"
163+
superstruct = "0.7"
162164
syn = "1"
163165
sysinfo = "0.26"
164166
tempfile = "3"
@@ -170,8 +172,8 @@ tracing-appender = "0.2"
170172
tracing-core = "0.1"
171173
tracing-log = "0.2"
172174
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
173-
tree_hash = "0.5"
174-
tree_hash_derive = "0.5"
175+
tree_hash = "0.6"
176+
tree_hash_derive = "0.6"
175177
url = "2"
176178
uuid = { version = "0.8", features = ["serde", "v4"] }
177179
warp = { version = "0.3.7", default-features = false, features = ["tls"] }

beacon_node/beacon_chain/Cargo.toml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -19,58 +19,58 @@ environment = { workspace = true }
1919
serde_json = { workspace = true }
2020

2121
[dependencies]
22-
serde_json = { workspace = true }
22+
bitvec = { workspace = true }
23+
bls = { workspace = true }
24+
derivative = { workspace = true }
25+
eth1 = { workspace = true }
26+
eth2 = { workspace = true }
2327
eth2_network_config = { workspace = true }
24-
merkle_proof = { workspace = true }
25-
store = { workspace = true }
26-
parking_lot = { workspace = true }
28+
ethereum_hashing = { workspace = true }
29+
ethereum_serde_utils = { workspace = true }
30+
ethereum_ssz = { workspace = true }
31+
ethereum_ssz_derive = { workspace = true }
32+
execution_layer = { workspace = true }
33+
fork_choice = { workspace = true }
34+
futures = { workspace = true }
35+
genesis = { workspace = true }
36+
hex = { workspace = true }
37+
int_to_bytes = { workspace = true }
38+
itertools = { workspace = true }
39+
kzg = { workspace = true }
2740
lazy_static = { workspace = true }
28-
smallvec = { workspace = true }
2941
lighthouse_metrics = { workspace = true }
42+
logging = { workspace = true }
43+
lru = { workspace = true }
44+
merkle_proof = { workspace = true }
45+
oneshot_broadcast = { path = "../../common/oneshot_broadcast/" }
3046
operation_pool = { workspace = true }
47+
parking_lot = { workspace = true }
48+
proto_array = { workspace = true }
49+
rand = { workspace = true }
3150
rayon = { workspace = true }
51+
safe_arith = { workspace = true }
52+
sensitive_url = { workspace = true }
3253
serde = { workspace = true }
33-
ethereum_serde_utils = { workspace = true }
54+
serde_json = { workspace = true }
55+
slasher = { workspace = true }
3456
slog = { workspace = true }
57+
slog-async = { workspace = true }
58+
slog-term = { workspace = true }
3559
sloggers = { workspace = true }
3660
slot_clock = { workspace = true }
37-
ethereum_hashing = { workspace = true }
38-
ethereum_ssz = { workspace = true }
61+
smallvec = { workspace = true }
3962
ssz_types = { workspace = true }
40-
ethereum_ssz_derive = { workspace = true }
4163
state_processing = { workspace = true }
42-
tree_hash_derive = { workspace = true }
43-
tree_hash = { workspace = true }
44-
types = { workspace = true }
45-
tokio = { workspace = true }
46-
tokio-stream = { workspace = true }
47-
eth1 = { workspace = true }
48-
futures = { workspace = true }
49-
genesis = { workspace = true }
50-
int_to_bytes = { workspace = true }
51-
rand = { workspace = true }
52-
proto_array = { workspace = true }
53-
lru = { workspace = true }
54-
tempfile = { workspace = true }
55-
bitvec = { workspace = true }
56-
bls = { workspace = true }
57-
kzg = { workspace = true }
58-
safe_arith = { workspace = true }
59-
fork_choice = { workspace = true }
60-
task_executor = { workspace = true }
61-
derivative = { workspace = true }
62-
itertools = { workspace = true }
63-
slasher = { workspace = true }
64-
eth2 = { workspace = true }
64+
store = { workspace = true }
6565
strum = { workspace = true }
66-
logging = { workspace = true }
67-
execution_layer = { workspace = true }
68-
sensitive_url = { workspace = true }
6966
superstruct = { workspace = true }
70-
hex = { workspace = true }
71-
oneshot_broadcast = { path = "../../common/oneshot_broadcast/" }
72-
slog-term = { workspace = true }
73-
slog-async = { workspace = true }
67+
task_executor = { workspace = true }
68+
tempfile = { workspace = true }
69+
tokio = { workspace = true }
70+
tokio-stream = { workspace = true }
71+
tree_hash = { workspace = true }
72+
tree_hash_derive = { workspace = true }
73+
types = { workspace = true }
7474

7575
[[test]]
7676
name = "beacon_chain_tests"

0 commit comments

Comments
 (0)