From 23bcf9fe6f915d69fc709f8c707b80a260affe93 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Mon, 30 Sep 2019 11:12:54 +1000 Subject: [PATCH] Pin protobuf version to 2.8.x Lighthouse doesn't build with protobuf 2.9.0, and there's no point upgrading when it's about to be deleted. --- protos/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protos/Cargo.toml b/protos/Cargo.toml index 56364d188b..ab97e5fb3a 100644 --- a/protos/Cargo.toml +++ b/protos/Cargo.toml @@ -8,7 +8,7 @@ description = "Google protobuf message and service definitions used in Lighthous [dependencies] futures = "0.1" grpcio = { version = "0.4", default-features = false, features = ["protobuf-codec"] } -protobuf = "2.0" +protobuf = "~2.8.1" [build-dependencies] protoc-grpcio = "0.3.1"