From 5b269559154611bbbfda0191657ee3d84a42faa2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Mar 2024 01:25:18 +0000 Subject: [PATCH] Update clap requirement from ~4.4.0 to ~4.5.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-v4.4.0...v4.5.4) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bmap-rs/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bmap-rs/Cargo.toml b/bmap-rs/Cargo.toml index 55f5ac9..82bc36c 100644 --- a/bmap-rs/Cargo.toml +++ b/bmap-rs/Cargo.toml @@ -15,7 +15,7 @@ bmap-parser = { path = "../bmap-parser", version = "0.2.0"} anyhow = "1.0.66" nix = { version = "0.27.1", features = ["fs"] } flate2 = "1.0.24" -clap = { version = "~4.4.0", features = ["cargo"] } +clap = { version = "~4.5.4", features = ["cargo"] } indicatif = { version = "0.17.1", features = ["tokio"] } async-compression = { version = "0.4.5", features = ["gzip", "futures-io"] } tokio = { version = "1.21.2", features = ["rt", "macros", "fs", "rt-multi-thread"] }