From 2e02f532c5f92e72043974903a538bb0ac5c5dd0 Mon Sep 17 00:00:00 2001 From: Rim Rakhimov Date: Wed, 8 Nov 2023 10:33:48 +0400 Subject: [PATCH] launcher: Fix tonic version to 0.8 (#667) --- libs/blockscout-service-launcher/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/blockscout-service-launcher/Cargo.toml b/libs/blockscout-service-launcher/Cargo.toml index ebf48afeb..f1b574a01 100644 --- a/libs/blockscout-service-launcher/Cargo.toml +++ b/libs/blockscout-service-launcher/Cargo.toml @@ -25,7 +25,7 @@ prometheus = { version = "0.13", optional = true } reqwest = { version = "0.11", features = ["json"], optional = true } serde = { version = "1.0", features = ["derive"], optional = true } tokio = { version = "1", optional = true } -tonic = { version = ">= 0.8, < 0.11", optional = true } +tonic = { version = "0.8", optional = true } tracing = { version = "0.1", optional = true } tracing-opentelemetry = { version = "0.19", optional = true } tracing-subscriber = { version = "0.3", features = ["env-filter", "json"], optional = true }