From 027038290f1093e5c0e9f9254d2608a4b406935f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Sep 2022 20:44:46 +0000 Subject: [PATCH] Update clap requirement from 3.0 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.0.0...clap_complete-v4.0.1) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- rpi-led-matrix/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-led-matrix/Cargo.toml b/rpi-led-matrix/Cargo.toml index d476e5e..035d8ca 100644 --- a/rpi-led-matrix/Cargo.toml +++ b/rpi-led-matrix/Cargo.toml @@ -19,7 +19,7 @@ categories = ["embedded"] libc = "0.2" rpi-led-matrix-sys = { version = "0.2", path = "../rpi-led-matrix-sys" } embedded-graphics-core = { version = "0.3", optional = true } -clap = { version = "3.0", optional = true, features = ["cargo"] } +clap = { version = "4.0", optional = true, features = ["cargo"] } [dev-dependencies] embedded-graphics = "0.7"