From 6ced364f34f1fca82c754d5b4de57aef60068e21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 09:16:33 +0000 Subject: [PATCH] build(deps): bump lapin from 4.7.4 to 4.10.0 Bumps [lapin](https://github.com/amqp-rs/lapin) from 4.7.4 to 4.10.0. - [Changelog](https://github.com/amqp-rs/lapin/blob/main/CHANGELOG.md) - [Commits](https://github.com/amqp-rs/lapin/compare/v4.7.4...v4.10.0) --- updated-dependencies: - dependency-name: lapin dependency-version: 4.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 +++++++++++----------- crates/streamer/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4bb015295..90c3cde19 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -488,9 +488,9 @@ dependencies = [ [[package]] name = "amq-protocol" -version = "10.2.0" +version = "10.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95442d3faf08b9bed7491ceda36b0e0268126cb20d44e6e7573cf930d9aa5073" +checksum = "81833d7f9d250dda1ca55020d6dad20f5a242ad917dd6edd7c21f626424653a5" dependencies = [ "amq-protocol-tcp", "amq-protocol-types", @@ -502,9 +502,9 @@ dependencies = [ [[package]] name = "amq-protocol-tcp" -version = "10.2.0" +version = "10.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc754c77e62e58ea7323c3f257a97f747ac57f0ff3f7a91185f484dc1cb25bd2" +checksum = "889012b5e973bffd57bd668a9b184c2713754024ff1719164788e61ecb4450b5" dependencies = [ "amq-protocol-uri", "async-rs", @@ -515,9 +515,9 @@ dependencies = [ [[package]] name = "amq-protocol-types" -version = "10.2.0" +version = "10.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d8cb8fa210da5ec52799abf7ce45e2275b5a3f82ec4efafcd3e8161b7dbc9a8" +checksum = "356da5abbf8f1ad806d6eb77161ad2c878d892d74f756021c5002973303abb05" dependencies = [ "cookie-factory", "nom 8.0.0", @@ -527,9 +527,9 @@ dependencies = [ [[package]] name = "amq-protocol-uri" -version = "10.2.0" +version = "10.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0bc3e8b145641e20b57777a17b3bd7ba6bbdbb2b2ae2f26f6224be35e42c330" +checksum = "e6c4982c5c729761a6e9c1464c2da53094c07e9cf45aa3daceb2620e17b1fce9" dependencies = [ "amq-protocol-types", "percent-encoding", @@ -4666,16 +4666,16 @@ dependencies = [ [[package]] name = "lapin" -version = "4.7.4" +version = "4.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f296d806dbacc044135c9686a0d3e78b5122907d4d6604c72a825316139e9f2d" +checksum = "0fd20e01fd92597ca352ca7ceed3c589851ebad279dfcada48aa4d24fd3a7caa" dependencies = [ "amq-protocol", "async-rs", "async-trait", - "atomic-waker", "backon", "cfg-if", + "event-listener", "flume", "futures-core", "futures-io", diff --git a/crates/streamer/Cargo.toml b/crates/streamer/Cargo.toml index e417decb6..2b6907bde 100644 --- a/crates/streamer/Cargo.toml +++ b/crates/streamer/Cargo.toml @@ -11,7 +11,7 @@ futures = { workspace = true } async-trait = { workspace = true } strum = { workspace = true } -lapin = { version = "4.7.4" } +lapin = { version = "4.10.0" } gem_tracing = { path = "../tracing" } primitives = { path = "../primitives" }