From 51adac27fe7cd33ec77bef1f32bb6e82af9c5789 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 00:52:46 +0000 Subject: [PATCH] chore(deps,cargo): update tonic requirement from 0.10.2 to 0.11.0 Updates the requirements on [tonic](https://github.com/hyperium/tonic) to permit the latest version. - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](https://github.com/hyperium/tonic/compare/v0.10.2...v0.11.0) --- updated-dependencies: - dependency-name: tonic dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- sources/flight-sql/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 87d7c8e..3ccccbb 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -17,7 +17,7 @@ connectorx = { git = "https://github.com/sfu-db/connector-x.git", rev = "fa0fc7b "dst_arrow", "src_sqlite", ] } -tonic = "0.10.2" +tonic = "0.11.0" [dependencies] async-std = "1.12.0" diff --git a/sources/flight-sql/Cargo.toml b/sources/flight-sql/Cargo.toml index 8ab3d00..1b30f85 100644 --- a/sources/flight-sql/Cargo.toml +++ b/sources/flight-sql/Cargo.toml @@ -16,7 +16,7 @@ datafusion-substrait.workspace = true datafusion-federation.path = "../../datafusion-federation" datafusion-federation-sql.path = "../sql" futures = "0.3.30" -tonic = {version="0.10.2", features=["tls"] } +tonic = {version="0.11.0", features=["tls"] } prost = "0.12.3" arrow = "49.0.0" arrow-flight = { version = "49.0.0", features = ["flight-sql-experimental"] }