From 32dd43c749917e129a637725c814006c975390c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 06:36:15 -0300 Subject: [PATCH] chore(deps): bump kafka from 0.9.0 to 0.10.0 (#737) Bumps [kafka](https://github.com/kafka-rust/kafka-rust) from 0.9.0 to 0.10.0. - [Release notes](https://github.com/kafka-rust/kafka-rust/releases) - [Changelog](https://github.com/kafka-rust/kafka-rust/blob/master/CHANGELOG.md) - [Commits](https://github.com/kafka-rust/kafka-rust/commits) --- updated-dependencies: - dependency-name: kafka dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Santiago Carmuega --- Cargo.lock | 25 +++++-------------------- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 21 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d9aed4f..6f457c6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1406,30 +1406,15 @@ dependencies = [ "wasmtime-types", ] -[[package]] -name = "crc" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49fc9a695bca7f35f5f4c15cddc84415f66a74ea78eef08e90c5024f2b540e23" -dependencies = [ - "crc-catalog 1.1.1", -] - [[package]] name = "crc" version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" dependencies = [ - "crc-catalog 2.4.0", + "crc-catalog", ] -[[package]] -name = "crc-catalog" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403" - [[package]] name = "crc-catalog" version = "2.4.0" @@ -2934,12 +2919,12 @@ dependencies = [ [[package]] name = "kafka" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b11c86b0c0c9a9d89b136b2938a5b46a35c40f66eced2f09c76458b17dadfc2a" +checksum = "2054ba4edcb4dcda4209e138c7e88caf26d4a325b3db76fbdb6ca5eecc23e426" dependencies = [ "byteorder", - "crc 2.1.0", + "crc", "flate2", "fnv", "openssl", @@ -3602,7 +3587,7 @@ source = "git+https://github.com/txpipe/pallas#94b37fd798bb2528223aaa7946a929308 dependencies = [ "base58", "bech32", - "crc 3.0.1", + "crc", "hex", "pallas-codec", "pallas-crypto", diff --git a/Cargo.toml b/Cargo.toml index 2ae9ce4f..8ee6987c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ elasticsearch = { version = "8.5.0-alpha.1", optional = true } murmur3 = { version = "0.5.2", optional = true } openssl = { version = "0.10", optional = true, features = ["vendored"] } lapin = { version = "2.2.1", optional = true } -kafka = { version = "0.9.0", optional = true } +kafka = { version = "0.10.0", optional = true } google-cloud-pubsub = { version = "0.16.0", optional = true } google-cloud-googleapis = { version = "0.10.0", optional = true } google-cloud-default = { version = "0.4.0", optional = true, features = ["pubsub"] }