From fd860a0e34cdbc23ef1457ccbebbd6c85d570d25 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Mar 2024 01:45:19 +0000 Subject: [PATCH] Update clap requirement from ~4.4.0 to ~4.5.2 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.2) --- 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..1cfb2a7 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.2", 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"] }