From a42ca24327ab334cd167b75e97c7026e6a198ad8 Mon Sep 17 00:00:00 2001 From: Tobias de Bruijn Date: Sun, 26 Jun 2022 01:28:16 +0200 Subject: [PATCH] Updated Cargo.toml to support Prost 0.10 (#257) --- 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 62df809be..b3df9364d 100644 --- a/actix-protobuf/CHANGES.md +++ b/actix-protobuf/CHANGES.md @@ -2,6 +2,7 @@ ## Unreleased - 2022-xx-xx - Minimum supported Rust version (MSRV) is now 1.57 due to transitive `time` dependency. +- Update `prost` dependency to `0.10` ## 0.7.0 - 2022-03-01 diff --git a/actix-protobuf/Cargo.toml b/actix-protobuf/Cargo.toml index e8f199a67..616fa5367 100644 --- a/actix-protobuf/Cargo.toml +++ b/actix-protobuf/Cargo.toml @@ -21,8 +21,8 @@ path = "src/lib.rs" actix-web = { version = "4", default_features = false } derive_more = "0.99.5" futures-util = { version = "0.3.7", default-features = false } -prost = { version = "0.9", default_features = false } +prost = { version = "0.10", default_features = false } [dev-dependencies] actix-web = { version = "4", default_features = false, features = ["macros"] } -prost = { version = "0.9", default_features = false, features = ["prost-derive"] } +prost = { version = "0.10", default_features = false, features = ["prost-derive"] }