From f920479fdb8449709e433828f573958ee2f80186 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Mon, 6 Jul 2020 15:56:25 +0900 Subject: [PATCH] protobuf: Update to 0.6.0-alpha.1 --- actix-protobuf/CHANGES.md | 6 +++--- actix-protobuf/Cargo.toml | 4 ++-- actix-protobuf/examples/prost-example/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/actix-protobuf/CHANGES.md b/actix-protobuf/CHANGES.md index 32f6a2434..1eeb1130d 100644 --- a/actix-protobuf/CHANGES.md +++ b/actix-protobuf/CHANGES.md @@ -1,11 +1,11 @@ # Changes -## unreleased (for alpha version) +## 0.6.0-alpha.1 (2020-07-06) + +* Update `actix-web` to 3.0.0-alpha.3 * Minimum supported Rust version(MSRV) is now 1.40.0. -## unreleased - * Minimize `futures` dependency ## 0.5.1 (2019-02-17) diff --git a/actix-protobuf/Cargo.toml b/actix-protobuf/Cargo.toml index 0376d4d7e..38927ead3 100644 --- a/actix-protobuf/Cargo.toml +++ b/actix-protobuf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-protobuf" -version = "0.5.1" +version = "0.6.0-alpha.1" edition = "2018" authors = ["kingxsp ", "Yuki Okushi "] description = "Protobuf support for actix-web framework." @@ -21,7 +21,7 @@ futures-util = { version = "0.3.5", default-features = false } derive_more = "0.99" actix-rt = "1" -actix-web = { version = "2", default_features = false } +actix-web = { version = "3.0.0-alpha.3", default_features = false } prost = "0.6.0" diff --git a/actix-protobuf/examples/prost-example/Cargo.toml b/actix-protobuf/examples/prost-example/Cargo.toml index 2df0f023e..207ad39c8 100644 --- a/actix-protobuf/examples/prost-example/Cargo.toml +++ b/actix-protobuf/examples/prost-example/Cargo.toml @@ -12,5 +12,5 @@ prost = "0.6.0" prost-derive = "0.6.0" actix-rt = "1" -actix-web = "2" +actix-web = "3.0.0-alpha.3" actix-protobuf = { path="../../" }