Skip to content

Commit

Permalink
Updated Cargo.toml to support Prost 0.10 (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasDeBruijn authored Jun 25, 2022
1 parent 3c48e00 commit a42ca24
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions actix-protobuf/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions actix-protobuf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit a42ca24

Please sign in to comment.