From 679a29c081bbf7bc955d8cb7e7159f32605b2e61 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:30:50 +0000 Subject: [PATCH] build(deps): update prost requirement from 0.12.4 to 0.13.2 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) - [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/prost/compare/v0.12.4...v0.13.2) --- updated-dependencies: - dependency-name: prost dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- abci/Cargo.toml | 2 +- proto/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/abci/Cargo.toml b/abci/Cargo.toml index d5b5d18..b5de75b 100644 --- a/abci/Cargo.toml +++ b/abci/Cargo.toml @@ -46,7 +46,7 @@ required-features = ["server"] uuid = { version = "1.8.0", features = ["v4", "fast-rng"], optional = true } tenderdash-proto = { path = "../proto", default-features = false } bytes = { version = "1.6.0" } -prost = { version = "0.12.4" } +prost = { version = "0.13.2" } tracing = { version = "0.1.40", default-features = false } tracing-subscriber = { version = "0.3.18", optional = true, default-features = false, features = [ "ansi", diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 83c6bcb..f6a9ccf 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -44,7 +44,7 @@ grpc = [ ] [dependencies] -prost = { version = "0.12.4", default-features = false, features = [ +prost = { version = "0.13.2", default-features = false, features = [ "prost-derive", ] } tonic = { version = "0.11.0", optional = true }