mirror of
https://github.com/actix/actix-extras.git
synced 2025-02-20 01:34:22 +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:
parent
798a5d6d0e
commit
1261557dc9
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## Unreleased - 2020-xx-xx
|
## Unreleased - 2020-xx-xx
|
||||||
* Minimum supported Rust version (MSRV) is now 1.51.
|
* 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
|
## 0.7.0-beta.1 - 2020-06-27
|
||||||
|
@ -22,7 +22,7 @@ actix-rt = "2"
|
|||||||
actix-web = { version = "4.0.0-beta.8", default_features = false }
|
actix-web = { version = "4.0.0-beta.8", default_features = false }
|
||||||
derive_more = "0.99.5"
|
derive_more = "0.99.5"
|
||||||
futures-util = { version = "0.3.7", default-features = false }
|
futures-util = { version = "0.3.7", default-features = false }
|
||||||
prost = "0.7"
|
prost = { version = "0.8", default_features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
prost-derive = "0.7"
|
prost = { version = "0.8", default_features = false, features = ["prost-derive"] }
|
||||||
|
@ -12,5 +12,4 @@ actix-web = "4.0.0-beta.8"
|
|||||||
actix-protobuf = { path = "../../" }
|
actix-protobuf = { path = "../../" }
|
||||||
|
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
prost = "0.7"
|
prost = {version = "0.8", default_features = false, features = ["prost-derive"] }
|
||||||
prost-derive = "0.7"
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use actix_protobuf::*;
|
use actix_protobuf::*;
|
||||||
use actix_web::*;
|
use actix_web::*;
|
||||||
use prost_derive::Message;
|
use prost::Message;
|
||||||
|
|
||||||
#[derive(Clone, PartialEq, Message)]
|
#[derive(Clone, PartialEq, Message)]
|
||||||
pub struct MyObj {
|
pub struct MyObj {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user