Skip to content

Commit 13fc88f

Browse files
committed
fix version links
1 parent 39c968e commit 13fc88f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

tonic-health/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ async-stream = "0.3"
2323
prost = "0.12"
2424
tokio = {version = "1.0", features = ["sync"]}
2525
tokio-stream = "0.1"
26-
tonic = { version = "0.11", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
26+
tonic = { version = "0.12", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
2727

2828
[dev-dependencies]
2929
tokio = {version = "1.0", features = ["rt-multi-thread", "macros"]}

tonic-reflection/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ prost = "0.12"
3030
prost-types = {version = "0.12", optional = true}
3131
tokio = { version = "1.0", features = ["sync", "rt"], optional = true }
3232
tokio-stream = {version = "0.1", features = ["net"], optional = true }
33-
tonic = { version = "0.11", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
33+
tonic = { version = "0.12", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
3434

3535
[dev-dependencies]
36-
tonic = { version = "0.11", path = "../tonic", default-features = false, features = ["transport"] }
36+
tonic = { version = "0.12", path = "../tonic", default-features = false, features = ["transport"] }

tonic-types/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ version = "0.12.0"
2020
[dependencies]
2121
prost = "0.12"
2222
prost-types = "0.12"
23-
tonic = {version = "0.11", path = "../tonic", default-features = false}
23+
tonic = { version = "0.12", path = "../tonic", default-features = false }

tonic-web/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ http = "1"
2222
http-body = "1"
2323
http-body-util = "0.1"
2424
pin-project = "1"
25-
tonic = {version = "0.11", path = "../tonic", default-features = false}
25+
tonic = { version = "0.12", path = "../tonic", default-features = false }
2626
tower-service = "0.3"
2727
tower-layer = "0.3"
2828
tower-http = { version = "0.5", features = ["cors"] }
2929
tracing = "0.1"
3030

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

0 commit comments

Comments
 (0)