From 409fe926e11fad0ba4860e96c4372b672535eed7 Mon Sep 17 00:00:00 2001 From: Jonas Bostoen Date: Fri, 4 Oct 2024 19:04:54 +0200 Subject: [PATCH] feat(bolt-boost): update ssz-rs dep --- bolt-boost/Cargo.lock | 10 +++++----- bolt-boost/Cargo.toml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/bolt-boost/Cargo.lock b/bolt-boost/Cargo.lock index 83d0de44f..26a114203 100644 --- a/bolt-boost/Cargo.lock +++ b/bolt-boost/Cargo.lock @@ -1131,7 +1131,7 @@ dependencies = [ [[package]] name = "cb-common" version = "0.3.0" -source = "git+https://github.com/commit-boost/commit-boost-client?rev=v0.3.0#d511c267243b3371f4d47604aebe6a20dbbd0e79" +source = "git+https://github.com/commit-boost/commit-boost-client?tag=v0.3.0#d511c267243b3371f4d47604aebe6a20dbbd0e79" dependencies = [ "alloy", "axum", @@ -1162,7 +1162,7 @@ dependencies = [ [[package]] name = "cb-metrics" version = "0.3.0" -source = "git+https://github.com/commit-boost/commit-boost-client?rev=v0.3.0#d511c267243b3371f4d47604aebe6a20dbbd0e79" +source = "git+https://github.com/commit-boost/commit-boost-client?tag=v0.3.0#d511c267243b3371f4d47604aebe6a20dbbd0e79" dependencies = [ "axum", "cb-common", @@ -1176,7 +1176,7 @@ dependencies = [ [[package]] name = "cb-pbs" version = "0.3.0" -source = "git+https://github.com/commit-boost/commit-boost-client?rev=v0.3.0#d511c267243b3371f4d47604aebe6a20dbbd0e79" +source = "git+https://github.com/commit-boost/commit-boost-client?tag=v0.3.0#d511c267243b3371f4d47604aebe6a20dbbd0e79" dependencies = [ "alloy", "async-trait", @@ -3856,7 +3856,7 @@ dependencies = [ [[package]] name = "ssz_rs" version = "0.9.0" -source = "git+https://github.com/mempirate/ssz-rs?branch=feat/bump-deps#5bce60fa871e4ecd31024ea2a7be58a6c74f7dfa" +source = "git+https://github.com/ralexstokes/ssz-rs?rev=ec3073e#ec3073e2273b4d0873fcb6df68ff4eff79588e92" dependencies = [ "alloy-primitives 0.8.5", "bitvec", @@ -3868,7 +3868,7 @@ dependencies = [ [[package]] name = "ssz_rs_derive" version = "0.9.0" -source = "git+https://github.com/mempirate/ssz-rs?branch=feat/bump-deps#5bce60fa871e4ecd31024ea2a7be58a6c74f7dfa" +source = "git+https://github.com/ralexstokes/ssz-rs?rev=ec3073e#ec3073e2273b4d0873fcb6df68ff4eff79588e92" dependencies = [ "proc-macro2", "quote", diff --git a/bolt-boost/Cargo.toml b/bolt-boost/Cargo.toml index 497145e7e..fd02c0d07 100644 --- a/bolt-boost/Cargo.toml +++ b/bolt-boost/Cargo.toml @@ -15,7 +15,7 @@ thiserror = "1.0.63" reqwest = "0.12.7" # crypto -ssz_rs = { git = "https://github.com/mempirate/ssz-rs", branch = "feat/bump-deps", features = [ +ssz_rs = { git = "https://github.com/ralexstokes/ssz-rs", rev = "ec3073e", features = [ "sha2-asm", ] } tree_hash = "0.8" @@ -40,8 +40,8 @@ alloy = { version = "0.3.6", features = [ ] } # commit-boost -cb-common = { git = "https://github.com/commit-boost/commit-boost-client", rev = "v0.3.0" } -cb-pbs = { git = "https://github.com/commit-boost/commit-boost-client", rev = "v0.3.0" } +cb-common = { git = "https://github.com/commit-boost/commit-boost-client", tag = "v0.3.0" } +cb-pbs = { git = "https://github.com/commit-boost/commit-boost-client", tag = "v0.3.0" } # other rand = "0.8.5"