From c029287801cad305612a2c464c8496d1a0ab18e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Sep 2023 00:25:08 +0000 Subject: [PATCH] Update prost requirement from 0.11 to 0.12 (#333) * Update prost requirement from 0.11 to 0.12 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/prost-build-0.11.1...v0.12.1) --- updated-dependencies: - dependency-name: prost dependency-type: direct:production ... Signed-off-by: dependabot[bot] * docs: update changelog --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Rob Ede --- actix-protobuf/CHANGES.md | 1 + actix-protobuf/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/actix-protobuf/CHANGES.md b/actix-protobuf/CHANGES.md index bab17de3d..453bdd3f4 100644 --- a/actix-protobuf/CHANGES.md +++ b/actix-protobuf/CHANGES.md @@ -2,6 +2,7 @@ ## Unreleased +- Updated `prost` dependency to `0.12`. - Minimum supported Rust version (MSRV) is now 1.68. ## 0.9.0 diff --git a/actix-protobuf/Cargo.toml b/actix-protobuf/Cargo.toml index 44e9c363e..51cf3a1bd 100644 --- a/actix-protobuf/Cargo.toml +++ b/actix-protobuf/Cargo.toml @@ -21,8 +21,8 @@ all-features = true actix-web = { version = "4", default-features = false } derive_more = "0.99.7" futures-util = { version = "0.3.7", default-features = false } -prost = { version = "0.11", default-features = false } +prost = { version = "0.12", default-features = false } [dev-dependencies] actix-web = { version = "4", default-features = false, features = ["macros"] } -prost = { version = "0.11", default-features = false, features = ["prost-derive"] } +prost = { version = "0.12", default-features = false, features = ["prost-derive"] }