From 8638b05e7d1aed1d053447b4aee52fe6e77b6dd8 Mon Sep 17 00:00:00 2001 From: Kai Hudalla Date: Wed, 16 Oct 2024 08:55:34 +0200 Subject: [PATCH] Update minimum version of protobuf Updated minimum version of protobuf crate to fix clippy warning. See https://github.com/stepancheg/rust-protobuf/pull/733 --- components/Cargo.lock | 18 +++++++++--------- components/Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/components/Cargo.lock b/components/Cargo.lock index d61d03a..3f6547a 100644 --- a/components/Cargo.lock +++ b/components/Cargo.lock @@ -2340,9 +2340,9 @@ dependencies = [ [[package]] name = "protobuf" -version = "3.3.0" +version = "3.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b65f4a8ec18723a734e5dc09c173e0abf9690432da5340285d536edcb4dac190" +checksum = "3018844a02746180074f621e847703737d27d89d7f0721a7a4da317f88b16385" dependencies = [ "once_cell", "protobuf-support", @@ -2351,9 +2351,9 @@ dependencies = [ [[package]] name = "protobuf-codegen" -version = "3.3.0" +version = "3.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e85514a216b1c73111d9032e26cc7a5ecb1bb3d4d9539e91fb72a4395060f78" +checksum = "411c15a212b4de05eb8bc989fd066a74c86bd3c04e27d6e86bd7703b806d7734" dependencies = [ "anyhow", "once_cell", @@ -2366,12 +2366,12 @@ dependencies = [ [[package]] name = "protobuf-parse" -version = "3.3.0" +version = "3.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77d6fbd6697c9e531873e81cec565a85e226b99a0f10e1acc079be057fe2fcba" +checksum = "06f45f16b522d92336e839b5e40680095a045e36a1e7f742ba682ddc85236772" dependencies = [ "anyhow", - "indexmap 1.9.3", + "indexmap 2.0.0", "log", "protobuf", "protobuf-support", @@ -2382,9 +2382,9 @@ dependencies = [ [[package]] name = "protobuf-support" -version = "3.3.0" +version = "3.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6872f4d4f4b98303239a2b5838f5bbbb77b01ffc892d627957f37a22d7cfe69c" +checksum = "faf96d872914fcda2b66d66ea3fff2be7c66865d31c7bb2790cff32c0e714880" dependencies = [ "thiserror", ] diff --git a/components/Cargo.toml b/components/Cargo.toml index e05c496..18fc949 100644 --- a/components/Cargo.toml +++ b/components/Cargo.toml @@ -41,8 +41,8 @@ fms-proto = { path = "fms-proto" } influx-client = { path = "influx-client", default-features = false } influxrs = { version = "2.0" } log = { version = "0.4" } -protobuf = { version = "3.3" } -protobuf-codegen = { version = "3.3" } +protobuf = { version = "3.5.1" } +protobuf-codegen = { version = "3.5.1" } protoc-bin-vendored = { version = "3.0" } # prost has no features prost = { version = "0.12" }