1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-27 09:12:57 +01:00

protobuf: Update prost to 0.8 (Fixes CI on nightly) (#197)

Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
Thales 2021-10-11 15:56:15 -03:00 committed by GitHub
parent 798a5d6d0e
commit 1261557dc9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 5 deletions

View File

@ -2,6 +2,9 @@
## Unreleased - 2020-xx-xx
* Minimum supported Rust version (MSRV) is now 1.51.
* Bump `prost` version to 0.8. [#197]
[#197]: https://github.com/actix/actix-extras/pull/197
## 0.7.0-beta.1 - 2020-06-27

View File

@ -22,7 +22,7 @@ actix-rt = "2"
actix-web = { version = "4.0.0-beta.8", default_features = false }
derive_more = "0.99.5"
futures-util = { version = "0.3.7", default-features = false }
prost = "0.7"
prost = { version = "0.8", default_features = false }
[dev-dependencies]
prost-derive = "0.7"
prost = { version = "0.8", default_features = false, features = ["prost-derive"] }

View File

@ -12,5 +12,4 @@ actix-web = "4.0.0-beta.8"
actix-protobuf = { path = "../../" }
env_logger = "0.8"
prost = "0.7"
prost-derive = "0.7"
prost = {version = "0.8", default_features = false, features = ["prost-derive"] }

View File

@ -1,6 +1,6 @@
use actix_protobuf::*;
use actix_web::*;
use prost_derive::Message;
use prost::Message;
#[derive(Clone, PartialEq, Message)]
pub struct MyObj {