Skip to content

Commit f4a3a7f

Browse files
authored
feat(signer): load keys in parallel (#330)
1 parent ea4a2d8 commit f4a3a7f

File tree

5 files changed

+135
-117
lines changed

5 files changed

+135
-117
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ color-eyre = "0.6.3"
3636
ctr = "0.9.2"
3737
derive_more = { version = "2.0.1", features = ["deref", "display", "from", "into"] }
3838
docker-compose-types = "0.16.0"
39-
eth2_keystore = { git = "https://github.com/sigp/lighthouse", rev = "8d058e4040b765a96aa4968f4167af7571292be2" }
39+
eth2_keystore = { git = "https://github.com/sigp/lighthouse", tag = "v7.0.1" }
4040
ethereum_serde_utils = "0.7.0"
4141
ethereum_ssz = "0.8"
4242
ethereum_ssz_derive = "0.8"
@@ -51,6 +51,7 @@ pbkdf2 = "0.12.2"
5151
prometheus = "0.13.4"
5252
prost = "0.13.4"
5353
rand = { version = "0.9", features = ["os_rng"] }
54+
rayon = "1.10.0"
5455
reqwest = { version = "0.12.4", features = ["json", "stream"] }
5556
serde = { version = "1.0.202", features = ["derive"] }
5657
serde_json = "1.0.117"

crates/common/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,10 @@ ethereum_serde_utils.workspace = true
2121
ethereum_ssz.workspace = true
2222
ethereum_ssz_derive.workspace = true
2323
eyre.workspace = true
24+
jsonwebtoken.workspace = true
2425
pbkdf2.workspace = true
2526
rand.workspace = true
27+
rayon.workspace = true
2628
reqwest.workspace = true
2729
serde.workspace = true
2830
serde_json.workspace = true
@@ -40,4 +42,3 @@ tree_hash.workspace = true
4042
tree_hash_derive.workspace = true
4143
unicode-normalization.workspace = true
4244
url.workspace = true
43-
jsonwebtoken.workspace = true

0 commit comments

Comments
 (0)