Skip to content

Commit

Permalink
fix version links
Browse files Browse the repository at this point in the history
  • Loading branch information
LucioFranco committed Jun 24, 2024
1 parent 2f96ea9 commit 9161713
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tonic-health/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async-stream = "0.3"
prost = "0.12"
tokio = {version = "1.0", features = ["sync"]}
tokio-stream = "0.1"
tonic = { version = "0.11", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
tonic = { version = "0.12", path = "../tonic", default-features = false, features = ["codegen", "prost"] }

[dev-dependencies]
tokio = {version = "1.0", features = ["rt-multi-thread", "macros"]}
Expand Down
4 changes: 2 additions & 2 deletions tonic-reflection/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ prost = "0.12"
prost-types = {version = "0.12", optional = true}
tokio = { version = "1.0", features = ["sync", "rt"], optional = true }
tokio-stream = {version = "0.1", features = ["net"], optional = true }
tonic = { version = "0.11", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
tonic = { version = "0.12", path = "../tonic", default-features = false, features = ["codegen", "prost"] }

[dev-dependencies]
tonic = { version = "0.11", path = "../tonic", default-features = false, features = ["transport"] }
tonic = { version = "0.12", path = "../tonic", default-features = false, features = ["transport"] }
2 changes: 1 addition & 1 deletion tonic-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ version = "0.12.0"
[dependencies]
prost = "0.12"
prost-types = "0.12"
tonic = {version = "0.11", path = "../tonic", default-features = false}
tonic = { version = "0.12", path = "../tonic", default-features = false }
4 changes: 2 additions & 2 deletions tonic-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ http = "1"
http-body = "1"
http-body-util = "0.1"
pin-project = "1"
tonic = {version = "0.11", path = "../tonic", default-features = false}
tonic = { version = "0.12", path = "../tonic", default-features = false }
tower-service = "0.3"
tower-layer = "0.3"
tower-http = { version = "0.5", features = ["cors"] }
tracing = "0.1"

[dev-dependencies]
tokio = {version = "1", features = ["macros", "rt"]}
tokio = { version = "1", features = ["macros", "rt"] }

0 comments on commit 9161713

Please sign in to comment.