From d01fa187b7ef3c10e19d5ae550a6cd723941ca0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Aug 2024 09:37:55 +0000 Subject: [PATCH] build(deps): bump protobuf from 2.28.0 to 3.5.1 Bumps [protobuf](https://github.com/stepancheg/rust-protobuf) from 2.28.0 to 3.5.1. - [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.5.1) --- 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 da05b0535..46bad9f6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -758,7 +758,7 @@ dependencies = [ "pretty_assertions", "prettydiff", "prometheus", - "protobuf", + "protobuf 3.5.1", "protoc-rust", "quay", "regex", @@ -2738,7 +2738,7 @@ dependencies = [ "lazy_static", "memchr", "parking_lot", - "protobuf", + "protobuf 2.28.0", "thiserror", ] @@ -2767,13 +2767,33 @@ version = "2.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" +[[package]] +name = "protobuf" +version = "3.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bcc343da15609eaecd65f8aa76df8dc4209d325131d8219358c0aaaebab0bf6" +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.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0766e3675a627c327e4b3964582594b0e8741305d628a98a5de75a1d15f99b9" +dependencies = [ + "thiserror", ] [[package]] @@ -2792,7 +2812,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 4da1cb9b1..a0c2d9424 100644 --- a/cincinnati/Cargo.toml +++ b/cincinnati/Cargo.toml @@ -14,7 +14,7 @@ futures = "0.3" lazy_static = "^1.2.0" log = "^0.4.20" prometheus = "0.13" -protobuf = "2.20.0" +protobuf = "3.5.1" quay = { path = "../quay" } regex = "^1.9.6" reqwest = { version = "^0.11", features = ["gzip", "rustls-tls-native-roots", "native-tls"] }