summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-03-20 08:14:09 +0000
committerGitHub <noreply@github.com>2023-03-20 08:14:09 +0000
commit05d63073adfa6f2785b76835d2ec8a7fb14389f8 (patch)
treeb0e5f08a4f6629b158983a94761dc34b55f97f48
parentbef642ea73fc6f1a3d406af4bd1c68ee1ac3dcaf (diff)
Build(deps): Bump clap from 4.1.8 to 4.1.11
Bumps [clap](https://github.com/clap-rs/clap) from 4.1.8 to 4.1.11. - [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.8...v4.1.11) --- 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.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 a5f75e5..23ffae5 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 6a1e6e3..f301c51 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" }