From 3c1130377a2206a015b5a192d57313602fd9ab52 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 06:04:03 +0000 Subject: [PATCH] Update clap requirement from 3.2 to 4.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_complete-v3.2.0...v4.0.8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tools/build-wasm-example/Cargo.toml | 2 +- tools/spancmp/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/build-wasm-example/Cargo.toml b/tools/build-wasm-example/Cargo.toml index b0bf1bcffd293..6496c0fbb1b96 100644 --- a/tools/build-wasm-example/Cargo.toml +++ b/tools/build-wasm-example/Cargo.toml @@ -9,4 +9,4 @@ license = "MIT OR Apache-2.0" [dependencies] xshell = "0.2" -clap = { version = "3.2", features = ["derive"] } +clap = { version = "4.0", features = ["derive"] } diff --git a/tools/spancmp/Cargo.toml b/tools/spancmp/Cargo.toml index 613d786780d9a..7a2464691addc 100644 --- a/tools/spancmp/Cargo.toml +++ b/tools/spancmp/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0" [dependencies] serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } -clap = { version = "3.2", features = ["derive"] } +clap = { version = "4.0", features = ["derive"] } regex = "1.5" termcolor = "1.1" bevy_utils = { path = "../../crates/bevy_utils", version = "0.9.0-dev" }