From 59c77888464a0302993dbe07fed7c1848b415f8f Mon Sep 17 00:00:00 2001 From: James Nugent Date: Mon, 30 Mar 2020 09:47:04 -0500 Subject: [PATCH] fix(health): Set referenced version of tonic --- tonic-health/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tonic-health/Cargo.toml b/tonic-health/Cargo.toml index d17b80d..b2f7645 100644 --- a/tonic-health/Cargo.toml +++ b/tonic-health/Cargo.toml @@ -19,7 +19,7 @@ transport = ["tonic/transport"] [dependencies] async-stream = "0.2" tokio = { version = "0.2", features = ["sync", "stream"] } -tonic = { path = "../tonic", features = ["codegen", "data-prost"] } +tonic = { version = "0.1", path = "../tonic", features = ["codegen", "data-prost"] } bytes = "0.5" prost = "0.6" @@ -27,4 +27,4 @@ prost = "0.6" tokio = { version = "0.2", features = ["rt-core", "macros"]} [build-dependencies] -tonic-build = { path = "../tonic-build" } \ No newline at end of file +tonic-build = { version = "0.1", path = "../tonic-build" } \ No newline at end of file