From 825d1f9809e6504f50f6a1793d5048df598dbcda Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 20:51:29 +0000 Subject: [PATCH] chore: update prost requirement from 0.12 to 0.13 in /rust 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.0...v0.13.0) --- updated-dependencies: - dependency-name: prost dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rust/Cargo.toml | 2 +- rust/codegen/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 4def08fa..1cce47e8 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -19,7 +19,7 @@ blake2 = {version = "0.10.6", optional = true, default-features = false} blake3 = {version = "1.5.0", optional = true, default-features = false} bytes = {version = "1.0.1", default-features = false} hex = {version = "0.4.3", default-features = false, features = ["alloc"]} -prost = {version = "0.12", default-features = false, features = ["prost-derive"]} +prost = {version = "0.13", default-features = false, features = ["prost-derive"]} ripemd = {version = "0.1.1", optional = true, default-features = false} sha2 = {version = "0.10.2", optional = true, default-features = false} sha3 = {version = "0.10.2", optional = true, default-features = false} diff --git a/rust/codegen/Cargo.toml b/rust/codegen/Cargo.toml index ba551718..d01322ad 100644 --- a/rust/codegen/Cargo.toml +++ b/rust/codegen/Cargo.toml @@ -8,6 +8,6 @@ edition = "2018" [dependencies] bytes = "1.0.1" -prost = "0.12" +prost = "0.13" prost-build = "0.12" informalsystems-pbjson-build = "0.7.0"