From 261a00abf87865ba2e19b403561e0024691e583a Mon Sep 17 00:00:00 2001 From: Pablo Deymonnaz Date: Fri, 13 Mar 2026 18:08:07 -0300 Subject: [PATCH] Switch spawned-concurrency and spawned-rt from git tag to crates.io 0.5.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The stable 0.5.0 release is now published on crates.io, so we can drop the git dependency pointing at the v0.5.0-rc2 tag. No breaking changes — all tests pass as-is. --- Cargo.lock | 9 ++++++--- Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2ca5186..e040c52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7085,7 +7085,8 @@ dependencies = [ [[package]] name = "spawned-concurrency" version = "0.5.0" -source = "git+https://github.com/lambdaclass/spawned.git?tag=v0.5.0-rc2#c728b223d77828a00e521f37a783a9ea1c6046b2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc21166874e8cd7584ea795c223303160461f0bb1b571bc23e92ca2abb7c5149" dependencies = [ "futures", "pin-project-lite", @@ -7098,7 +7099,8 @@ dependencies = [ [[package]] name = "spawned-macros" version = "0.5.0" -source = "git+https://github.com/lambdaclass/spawned.git?tag=v0.5.0-rc2#c728b223d77828a00e521f37a783a9ea1c6046b2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d64742b41741dfebd5b5ba4dbc4cbc5cc91f4a2cf8107191007d64295682973" dependencies = [ "proc-macro2", "quote", @@ -7122,7 +7124,8 @@ dependencies = [ [[package]] name = "spawned-rt" version = "0.5.0" -source = "git+https://github.com/lambdaclass/spawned.git?tag=v0.5.0-rc2#c728b223d77828a00e521f37a783a9ea1c6046b2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9e270e6606a118708120671f2d171316762fa832cab73699c714c23aaafe6eb" dependencies = [ "ctrlc", "tokio", diff --git a/Cargo.toml b/Cargo.toml index 78aec85..0238673 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,8 +46,8 @@ serde_json = "1.0.117" serde_yaml_ng = "0.10" hex = "0.4" -spawned-concurrency = { git = "https://github.com/lambdaclass/spawned.git", tag = "v0.5.0-rc2" } -spawned-rt = { git = "https://github.com/lambdaclass/spawned.git", tag = "v0.5.0-rc2" } +spawned-concurrency = "0.5.0" +spawned-rt = "0.5.0" tokio = "1.0" prometheus = "0.14"