Skip to content

Commit

Permalink
Fix tonic-health cargo path issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Jan 15, 2021
1 parent fda2d68 commit e511f17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tonic-health/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ transport = ["tonic/transport"]

[dependencies]
tokio = { version = "1.0", features = ["sync"] }
tonic = { path = "../tonic", features = ["codegen", "prost"] }
tonic = { version = "0.4", path = "../tonic", features = ["codegen", "prost"] }
bytes = "1.0"
prost = "0.7"
tokio-stream = "0.1"
Expand All @@ -29,4 +29,4 @@ async-stream = "0.3"
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"]}

[build-dependencies]
tonic-build = { path = "../tonic-build" }
tonic-build = { version = "0.4", path = "../tonic-build" }

0 comments on commit e511f17

Please sign in to comment.