From 916171371fd7c68c40fbf1a06b10945dcb560812 Mon Sep 17 00:00:00 2001 From: Lucio Franco Date: Mon, 24 Jun 2024 09:12:07 -0400 Subject: [PATCH] fix version links --- tonic-health/Cargo.toml | 2 +- tonic-reflection/Cargo.toml | 4 ++-- tonic-types/Cargo.toml | 2 +- tonic-web/Cargo.toml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tonic-health/Cargo.toml b/tonic-health/Cargo.toml index 4b3ecdf15..e84d530e4 100644 --- a/tonic-health/Cargo.toml +++ b/tonic-health/Cargo.toml @@ -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"]} diff --git a/tonic-reflection/Cargo.toml b/tonic-reflection/Cargo.toml index 56f93c872..5134c6f29 100644 --- a/tonic-reflection/Cargo.toml +++ b/tonic-reflection/Cargo.toml @@ -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"] } diff --git a/tonic-types/Cargo.toml b/tonic-types/Cargo.toml index 305c589d0..f153d0f23 100644 --- a/tonic-types/Cargo.toml +++ b/tonic-types/Cargo.toml @@ -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 } diff --git a/tonic-web/Cargo.toml b/tonic-web/Cargo.toml index 94a4214a7..22a58a10f 100644 --- a/tonic-web/Cargo.toml +++ b/tonic-web/Cargo.toml @@ -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"] }