From 98fad0f96af5d3e0627ba90e30546a5edcac3eaf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Jan 2022 00:55:32 +0000 Subject: [PATCH] Update clap requirement from 2.33 to 3.0 Updates the requirements on [clap](https://github.com/clap-rs/clap) to permit the latest version. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_generate-v3.0.0-rc.0...v3.0.12) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ballista/rust/scheduler/Cargo.toml | 2 +- datafusion-cli/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ballista/rust/scheduler/Cargo.toml b/ballista/rust/scheduler/Cargo.toml index 0bacccf031d8..abd036143c47 100644 --- a/ballista/rust/scheduler/Cargo.toml +++ b/ballista/rust/scheduler/Cargo.toml @@ -33,7 +33,7 @@ sled = ["sled_package", "tokio-stream"] [dependencies] anyhow = "1" ballista-core = { path = "../core", version = "0.6.0" } -clap = "2" +clap = "3" configure_me = "0.4.0" datafusion = { path = "../../../datafusion", version = "6.0.0" } env_logger = "0.9" diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index 62f63b432aba..0ecc0037bc24 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -27,7 +27,7 @@ repository = "https://github.com/apache/arrow-datafusion" rust-version = "1.58" [dependencies] -clap = "2.33" +clap = "3.0" rustyline = "9.0" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync"] } datafusion = { path = "../datafusion", version = "6.0.0" }