diff --git a/src/rust/engine/Cargo.lock b/src/rust/engine/Cargo.lock index 5a795c5a051..0259b245a68 100644 --- a/src/rust/engine/Cargo.lock +++ b/src/rust/engine/Cargo.lock @@ -2417,11 +2417,23 @@ dependencies = [ [[package]] name = "protobuf" -version = "2.27.1" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf7e6d18738ecd0902d30d1ad232c9125985a3422929b16c65517b38adc14f96" +checksum = "b55bad9126f378a853655831eb7363b7b01b81d19f8cb1218861086ca4a1a61e" dependencies = [ "bytes", + "once_cell", + "protobuf-support", + "thiserror", +] + +[[package]] +name = "protobuf-support" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5d4d7b8601c814cfb36bcebb79f0e61e45e1e93640cf778837833bbed05c372" +dependencies = [ + "thiserror", ] [[package]] diff --git a/src/rust/engine/fs/brfs/Cargo.toml b/src/rust/engine/fs/brfs/Cargo.toml index d1409bea9a0..3d8942d9f58 100644 --- a/src/rust/engine/fs/brfs/Cargo.toml +++ b/src/rust/engine/fs/brfs/Cargo.toml @@ -18,7 +18,7 @@ hashing = { path = "../../hashing" } libc = "0.2.126" log = "0.4.17" parking_lot = "0.12" -protobuf = { version = "2.27.1", features = ["with-bytes"] } +protobuf = { version = "3.2.0", features = ["with-bytes"] } store = { path = "../store" } task_executor = { path = "../../task_executor" } time = "0.3"