From 63d214c097f1b89c8ace0103639b4ab7a481ec48 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Jan 2023 15:05:35 +0000 Subject: [PATCH] Bump clap from 2.33.3 to 4.1.4 in /blacksmith Bumps [clap](https://github.com/clap-rs/clap) from 2.33.3 to 4.1.4. - [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/v2.33.3...v4.1.4) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- blacksmith/Cargo.lock | 39 +++++++++++++++++++++++++++++++++------ blacksmith/Cargo.toml | 2 +- 2 files changed, 34 insertions(+), 7 deletions(-) diff --git a/blacksmith/Cargo.lock b/blacksmith/Cargo.lock index 06dc5a6a2..d5265e6f5 100644 --- a/blacksmith/Cargo.lock +++ b/blacksmith/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "aho-corasick" version = "0.7.18" @@ -26,9 +28,9 @@ dependencies = [ [[package]] name = "ansi_term" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ "winapi", ] @@ -140,9 +142,9 @@ dependencies = [ [[package]] name = "clap" -version = "2.33.3" +version = "2.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" +checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" dependencies = [ "ansi_term", "atty", @@ -153,6 +155,25 @@ dependencies = [ "vec_map", ] +[[package]] +name = "clap" +version = "4.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f13b9c79b5d1dd500d20ef541215a6423c75829ef43117e1b4d17fd8af0b5d76" +dependencies = [ + "bitflags", + "clap_lex", +] + +[[package]] +name = "clap_lex" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" +dependencies = [ + "os_str_bytes", +] + [[package]] name = "core-foundation" version = "0.9.1" @@ -639,7 +660,7 @@ dependencies = [ "ammonia", "anyhow", "chrono", - "clap", + "clap 2.34.0", "elasticlunr-rs", "env_logger 0.7.1", "handlebars", @@ -661,7 +682,7 @@ dependencies = [ name = "mdbook-blacksmith" version = "0.1.0" dependencies = [ - "clap", + "clap 4.1.4", "env_logger 0.8.3", "log", "mdbook", @@ -817,6 +838,12 @@ dependencies = [ "vcpkg", ] +[[package]] +name = "os_str_bytes" +version = "6.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" + [[package]] name = "percent-encoding" version = "2.1.0" diff --git a/blacksmith/Cargo.toml b/blacksmith/Cargo.toml index c445c76eb..f70fb3784 100644 --- a/blacksmith/Cargo.toml +++ b/blacksmith/Cargo.toml @@ -17,7 +17,7 @@ serde_json = "1.0.71" toml = "0.5.8" [dependencies.clap] -version = "2.33.3" +version = "4.1.4" default-features = false [dependencies.mdbook]