Skip to content

Commit 9bacc9f

Browse files
committed
Merge branch 'main' into rate-limit-jwt
2 parents cc13a6f + f51f5bd commit 9bacc9f

14 files changed

Lines changed: 339 additions & 150 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ resolver = "2"
55
[workspace.package]
66
edition = "2021"
77
rust-version = "1.83"
8-
version = "0.8.0-rc.2"
8+
version = "0.8.0"
99

1010
[workspace.dependencies]
1111
aes = "0.8"
@@ -37,7 +37,7 @@ ctr = "0.9.2"
3737
derive_more = { version = "2.0.1", features = ["deref", "display", "from", "into"] }
3838
docker-compose-types = "0.16.0"
3939
docker-image = "0.2.1"
40-
eth2_keystore = { git = "https://github.com/sigp/lighthouse", rev = "8d058e4040b765a96aa4968f4167af7571292be2" }
40+
eth2_keystore = { git = "https://github.com/sigp/lighthouse", tag = "v7.0.1" }
4141
ethereum_serde_utils = "0.7.0"
4242
ethereum_ssz = "0.8"
4343
ethereum_ssz_derive = "0.8"
@@ -52,6 +52,7 @@ pbkdf2 = "0.12.2"
5252
prometheus = "0.13.4"
5353
prost = "0.13.4"
5454
rand = { version = "0.9", features = ["os_rng"] }
55+
rayon = "1.10.0"
5556
reqwest = { version = "0.12.4", features = ["json", "stream"] }
5657
serde = { version = "1.0.202", features = ["derive"] }
5758
serde_json = "1.0.117"

crates/common/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ ethereum_serde_utils.workspace = true
2222
ethereum_ssz.workspace = true
2323
ethereum_ssz_derive.workspace = true
2424
eyre.workspace = true
25+
jsonwebtoken.workspace = true
2526
pbkdf2.workspace = true
2627
rand.workspace = true
28+
rayon.workspace = true
2729
reqwest.workspace = true
2830
serde.workspace = true
2931
serde_json.workspace = true
@@ -41,4 +43,3 @@ tree_hash.workspace = true
4143
tree_hash_derive.workspace = true
4244
unicode-normalization.workspace = true
4345
url.workspace = true
44-
jsonwebtoken.workspace = true

0 commit comments

Comments
 (0)