From 6f94e958cacfbfc71957ca614824a5f2101131a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:47:14 +0000 Subject: [PATCH] build(deps): bump protobuf from 2.28.0 to 3.6.0 Bumps [protobuf](https://github.com/stepancheg/rust-protobuf) from 2.28.0 to 3.6.0. - [Changelog](https://github.com/stepancheg/rust-protobuf/blob/master/CHANGELOG-before-3.md) - [Commits](https://github.com/stepancheg/rust-protobuf/compare/v2.28.0...v3.6.0) --- updated-dependencies: - dependency-name: protobuf dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 ++++++++++++++++++++++++---- cincinnati/Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 102614031..d08a8e11b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -757,7 +757,7 @@ dependencies = [ "pgp", "pretty_assertions", "prometheus", - "protobuf", + "protobuf 3.6.0", "protoc-rust", "quay", "regex", @@ -2655,7 +2655,7 @@ dependencies = [ "lazy_static", "memchr", "parking_lot", - "protobuf", + "protobuf 2.28.0", "thiserror", ] @@ -2684,13 +2684,33 @@ version = "2.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" +[[package]] +name = "protobuf" +version = "3.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3018844a02746180074f621e847703737d27d89d7f0721a7a4da317f88b16385" +dependencies = [ + "once_cell", + "protobuf-support", + "thiserror", +] + [[package]] name = "protobuf-codegen" version = "2.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "033460afb75cf755fcfc16dfaed20b86468082a2ea24e05ac35ab4a099a017d6" dependencies = [ - "protobuf", + "protobuf 2.28.0", +] + +[[package]] +name = "protobuf-support" +version = "3.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faf96d872914fcda2b66d66ea3fff2be7c66865d31c7bb2790cff32c0e714880" +dependencies = [ + "thiserror", ] [[package]] @@ -2709,7 +2729,7 @@ version = "2.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22f8a182bb17c485f20bdc4274a8c39000a61024cfe461c799b50fec77267838" dependencies = [ - "protobuf", + "protobuf 2.28.0", "protobuf-codegen", "protoc", "tempfile", diff --git a/cincinnati/Cargo.toml b/cincinnati/Cargo.toml index 4d29084b1..27bd8ae11 100644 --- a/cincinnati/Cargo.toml +++ b/cincinnati/Cargo.toml @@ -14,7 +14,7 @@ futures = "0.3" lazy_static = "^1.5.0" log = "^0.4.20" prometheus = "0.13" -protobuf = "2.20.0" +protobuf = "3.6.0" quay = { path = "../quay" } regex = "^1.11.0" reqwest = { version = "^0.11", features = ["gzip", "rustls-tls-native-roots", "native-tls"] }