From b9fd41d4e7635ec6c24f03b91614449a0d897c53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 11:30:16 +0000 Subject: [PATCH] build(deps): update prost requirement from 0.12.4 to 0.13.1 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.1) --- 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 26eadee..7f2c5e3 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.1" } 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 09f6273..698f7d9 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.1", default-features = false, features = [ "prost-derive", ] } tonic = { version = "0.11.0", optional = true }