Skip to content

Commit

Permalink
Fix protobuf dependency invalid semver for cargo 1.54
Browse files Browse the repository at this point in the history
With this, rust-lang/cargo#9508, the dependency can no longer be used.
What was picked with 1.53 cargo was ~2.0, so use that instead.

Test:
verify dependency can now be used
  • Loading branch information
Jean-Philippe DUFRAIGNE committed Aug 2, 2021
1 parent aa51593 commit 263257c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ failpoint = ["fail"]

[dependencies]
log = ">0.2"
protobuf = "~2.0-2.2"
protobuf = "~2.0"
quick-error = "1.2.2"
rand = "0.5.4"
hashbrown = "0.1"
Expand Down

0 comments on commit 263257c

Please sign in to comment.