From 4b69e806719ea47c361b671f5c345e9b28361c4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 10:38:45 +0000 Subject: [PATCH] build(deps): update clap requirement from 3 to 4 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.5.20) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bin/Cargo.toml | 2 +- flirt/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 75260f2..37fc4f7 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/williballenthin/lancelot" [dependencies] log = "0.4" -clap = "3" +clap = "4" ansi_term = "0.12" hexyl = "0.15" fern = "0.7" diff --git a/flirt/Cargo.toml b/flirt/Cargo.toml index 4f782bd..0c8b02e 100644 --- a/flirt/Cargo.toml +++ b/flirt/Cargo.toml @@ -15,7 +15,7 @@ log = "0.4" nom = "7" regex = "1.3" bitvec = "1" -clap = "3" +clap = "4" fern = "0.7" chrono = { version = "0.4", features = ["std", "clock"], default-features = false } better-panic = "0.3"