From c808c181442c40660c2db04b1565be8c52d10c42 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Jan 2023 20:04:50 +0000 Subject: [PATCH] Update clap requirement from 3.0 to 4.1 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.1.0) --- 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..8ba5ab2 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.1", optional = true, features = ["cargo"] } [dev-dependencies] embedded-graphics = "0.7"