From 263257ce9c6541a3598c7200bff0982df1abd71c Mon Sep 17 00:00:00 2001 From: Jean-Philippe DUFRAIGNE Date: Mon, 2 Aug 2021 10:42:50 +0200 Subject: [PATCH] Fix protobuf dependency invalid semver for cargo 1.54 With this, https://github.com/rust-lang/cargo/pull/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 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9fef2c78a..fd892c35e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"