summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-03-06 05:09:46 +0000
committerGitHub <noreply@github.com>2023-03-06 05:09:46 +0000
commit48f921055be4b787d3d176d41e66e3d99c48d6cf (patch)
tree31a4b3f50be0816ad1c4119e99290b3626db97d7
parentb4da1e9e6dfa24d7268d1112db79bbc3c28b533c (diff)
Build(deps): Bump clap from 4.1.6 to 4.1.8
Bumps [clap](https://github.com/clap-rs/clap) from 4.1.6 to 4.1.8. - [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/v4.1.6...v4.1.8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml2
-rw-r--r--mqtt-tester/Cargo.toml2
3 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7f637c7..8864b79 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -145,9 +145,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
-version = "4.1.6"
+version = "4.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec0b0588d44d4d63a87dbd75c136c166bbfd9a86a31cb89e09906521c7d3f5e3"
+checksum = "c3d7ae14b20b94cb02149ed21a86c423859cbe18dc7ed69845cace50e52b40a5"
dependencies = [
"bitflags",
"clap_derive",
@@ -160,9 +160,9 @@ dependencies = [
[[package]]
name = "clap_derive"
-version = "4.1.0"
+version = "4.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8"
+checksum = "44bec8e5c9d09e439c4335b1af0abaab56dcf3b94999a936e1bb47b9134288f0"
dependencies = [
"heck",
"proc-macro-error",
diff --git a/Cargo.toml b/Cargo.toml
index f53c6fd..043d450 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -32,7 +32,7 @@ bin = ["clap", "tokio/rt-multi-thread", "tokio/macros", "tokio/io-std", "tracing
[dependencies]
bytes = "1.4.0"
-clap = { version = "4.1.6", optional = true, features = ["derive"] }
+clap = { version = "4.1.8", optional = true, features = ["derive"] }
dashmap = "5.4.0"
futures = "0.3.26"
mqtt-format = { version = "0.5.0", path = "mqtt-format", features = ["yoke"] }
diff --git a/mqtt-tester/Cargo.toml b/mqtt-tester/Cargo.toml
index 39bc259..b0f2be5 100644
--- a/mqtt-tester/Cargo.toml
+++ b/mqtt-tester/Cargo.toml
@@ -9,7 +9,7 @@ edition = "2021"
ansi_term = "0.12.1"
async-trait = "0.1.64"
bytes = "1.4.0"
-clap = { version = "4.1.6", features = ["derive"] }
+clap = { version = "4.1.8", features = ["derive"] }
futures = "0.3"
miette = { version = "5.1.1", features = ["fancy"] }
mqtt-format = { path = "../mqtt-format", version = "0.5.0" }