From 0498cf8ceb8a1a98afaae37eb8977f7e18de71a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 04:14:19 +0000 Subject: [PATCH] chore(deps): bump clap from 4.5.18 to 4.5.20 Bumps [clap](https://github.com/clap-rs/clap) from 4.5.18 to 4.5.20. - [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.5.18...clap_complete-v4.5.20) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- lib/cli/Cargo.toml | 2 +- lib/tests/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b2b42bba2..0c56905f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -563,9 +563,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.18" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" +checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" dependencies = [ "clap_builder", "clap_derive", @@ -573,9 +573,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.18" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" +checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" dependencies = [ "anstream", "anstyle", diff --git a/lib/cli/Cargo.toml b/lib/cli/Cargo.toml index 64009d1f6..91234faa1 100644 --- a/lib/cli/Cargo.toml +++ b/lib/cli/Cargo.toml @@ -11,5 +11,5 @@ name = "vrl" path = "src/main.rs" [dependencies] -clap = { version = "4.5.18", features = ["derive"] } +clap = { version = "4.5.20", features = ["derive"] } vrl = { path = "../../", features = ["cli"] } diff --git a/lib/tests/Cargo.toml b/lib/tests/Cargo.toml index 3e306d980..52a58a584 100644 --- a/lib/tests/Cargo.toml +++ b/lib/tests/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] vrl = { path = "../../", features = ["test_framework"] } chrono-tz = "0.10" -clap = { version = "4.5.18", features = ["derive"] } +clap = { version = "4.5.20", features = ["derive"] } glob = "0.3" tracing-subscriber = { version = "0.3.18", default-features = false, features = ["fmt"] }