From af024b1f6e66ec9230cc0f3e2d7365b96b589a70 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 9 Jul 2021 05:44:58 +0000 Subject: [PATCH] build(deps): update prost requirement from 0.6.1 to 0.8.0 Updates the requirements on [prost](https://github.com/tokio-rs/prost) to permit the latest version. - [Release notes](https://github.com/tokio-rs/prost/releases) - [Commits](https://github.com/tokio-rs/prost/compare/v0.6.1...v0.8.0) Signed-off-by: dependabot-preview[bot] --- components/epaxos/Cargo.toml | 2 +- components/storage/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/epaxos/Cargo.toml b/components/epaxos/Cargo.toml index 435b77e8..8ec48508 100644 --- a/components/epaxos/Cargo.toml +++ b/components/epaxos/Cargo.toml @@ -21,7 +21,7 @@ parse = { path = "../parse" } quick-error = { version = "1.2.2" } maplit = { version = "1.0.2" } tempfile = { version = "3.1.0" } -prost = { version = "0.6.1" } +prost = { version = "0.8.0" } tonic = "0.2" tokio = { version = "0.2.18", features = ["full"] } derive_more = "0.99.3" diff --git a/components/storage/Cargo.toml b/components/storage/Cargo.toml index e0fff608..e68b498e 100644 --- a/components/storage/Cargo.toml +++ b/components/storage/Cargo.toml @@ -10,5 +10,5 @@ edition = "2018" rocksdb = { git = "https://github.com/tikv/rust-rocksdb.git" } quick-error = { version = "1.2.2" } tempfile = { version = "3.1.0" } -prost = { version = "0.6.1" } +prost = { version = "0.8.0" } backtrace = {version= "0.3.53"}