summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-03-20 08:18:34 +0000
committerGitHub <noreply@github.com>2023-03-20 08:18:34 +0000
commit9cd33d1e486cfbf0a9d43ad8a264bee002a69438 (patch)
treec50a69c19e86432a78260be928ece0c511b2dbf6
parent3920508d5083a16ef7a964e656e1c758eda5a260 (diff)
parent05d63073adfa6f2785b76835d2ec8a7fb14389f8 (diff)
Merge #190
190: Build(deps): Bump clap from 4.1.8 to 4.1.11 r=matthiasbeyer a=dependabot[bot] [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [clap](https://github.com/clap-rs/clap) from 4.1.8 to 4.1.11. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-rw-r--r--Cargo.lock20
-rw-r--r--Cargo.toml2
-rw-r--r--mqtt-tester/Cargo.toml2
3 files changed, 15 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f75ab7c..4a968a6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -106,6 +106,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
+name = "bitflags"
+version = "2.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1"
+
+[[package]]
name = "brownstone"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -134,11 +140,11 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
-version = "4.1.8"
+version = "4.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3d7ae14b20b94cb02149ed21a86c423859cbe18dc7ed69845cace50e52b40a5"
+checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098"
dependencies = [
- "bitflags",
+ "bitflags 2.0.2",
"clap_derive",
"clap_lex",
"is-terminal",
@@ -149,9 +155,9 @@ dependencies = [
[[package]]
name = "clap_derive"
-version = "4.1.8"
+version = "4.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "44bec8e5c9d09e439c4335b1af0abaab56dcf3b94999a936e1bb47b9134288f0"
+checksum = "fddf67631444a3a3e3e5ac51c36a5e01335302de677bd78759eaa90ab1f46644"
dependencies = [
"heck",
"proc-macro-error",
@@ -723,7 +729,7 @@ version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
- "bitflags",
+ "bitflags 1.3.2",
]
[[package]]
@@ -773,7 +779,7 @@ version = "0.36.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4feacf7db682c6c329c4ede12649cd36ecab0f3be5b7d74e6a20304725db4549"
dependencies = [
- "bitflags",
+ "bitflags 1.3.2",
"errno",
"io-lifetimes",
"libc",
diff --git a/Cargo.toml b/Cargo.toml
index 4ab6437..619da83 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.8", optional = true, features = ["derive"] }
+clap = { version = "4.1.11", optional = true, features = ["derive"] }
dashmap = "5.4.0"
futures = "0.3.27"
mqtt-format = { version = "0.5.0", path = "mqtt-format", features = ["yoke"] }
diff --git a/mqtt-tester/Cargo.toml b/mqtt-tester/Cargo.toml
index 936ffce..ff02b5e 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.67"
bytes = "1.4.0"
-clap = { version = "4.1.8", features = ["derive"] }
+clap = { version = "4.1.11", features = ["derive"] }
futures = "0.3"
miette = { version = "5.6.0", features = ["fancy"] }
mqtt-format = { path = "../mqtt-format", version = "0.5.0" }