From 23d85b510a645da867439c7ecbb3b9707e414617 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 31 Jul 2022 07:36:00 +0000 Subject: [PATCH] Update tonic requirement from 0.7 to 0.8 Updates the requirements on [tonic](https://github.com/hyperium/tonic) to permit the latest version. - [Release notes](https://github.com/hyperium/tonic/releases) - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.7.0...v0.8.0) --- updated-dependencies: - dependency-name: tonic dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- arrow-flight/Cargo.toml | 2 +- integration-testing/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arrow-flight/Cargo.toml b/arrow-flight/Cargo.toml index 1400d913e797..26b205ab565f 100644 --- a/arrow-flight/Cargo.toml +++ b/arrow-flight/Cargo.toml @@ -29,7 +29,7 @@ license = "Apache-2.0" [dependencies] arrow = { path = "../arrow", version = "19.0.0", default-features = false, features = ["ipc"] } base64 = { version = "0.13", default-features = false } -tonic = { version = "0.7", default-features = false, features = ["transport", "codegen", "prost"] } +tonic = { version = "0.8", default-features = false, features = ["transport", "codegen", "prost"] } bytes = { version = "1", default-features = false } prost = { version = "0.10", default-features = false } prost-types = { version = "0.10.0", default-features = false, optional = true } diff --git a/integration-testing/Cargo.toml b/integration-testing/Cargo.toml index 5d98dc9eb963..af3502f3b921 100644 --- a/integration-testing/Cargo.toml +++ b/integration-testing/Cargo.toml @@ -42,6 +42,6 @@ serde = { version = "1.0", default-features = false, features = ["rc"] } serde_derive = { version = "1.0", default-features = false } serde_json = { version = "1.0", default-features = false, features = ["std"] } tokio = { version = "1.0", default-features = false } -tonic = { version = "0.7", default-features = false } +tonic = { version = "0.8", default-features = false } tracing-subscriber = { version = "0.3.1", default-features = false, features = ["fmt"], optional = true } num = { version = "0.4", default-features = false, features = ["std"] }