summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-07-21 09:35:28 +0000
committerMatthias Beyer <matthias.beyer@ifm.com>2022-07-27 09:56:22 +0200
commit0e0b6ef90bf6997fb0492cc841e731350e6953cd (patch)
tree2bd406db5df07448d804856f313034c39513c1c4
parent45b220f537d6a6c92772822927a432621e28438f (diff)
Bump rumqttd from 0.9.0 to 0.11.0
Bumps [rumqttd](https://github.com/bytebeamio/rumqtt) from 0.9.0 to 0.11.0. - [Release notes](https://github.com/bytebeamio/rumqtt/releases) - [Changelog](https://github.com/bytebeamio/rumqtt/blob/master/CHANGELOG.md) - [Commits](https://github.com/bytebeamio/rumqtt/commits) --- updated-dependencies: - dependency-name: rumqttd dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock22
-rw-r--r--crates/tests/mqtt_tests/Cargo.toml2
2 files changed, 17 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9dbf4aec..97dfd398 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2311,7 +2311,7 @@ dependencies = [
"percent-encoding",
"pin-project-lite",
"rustls 0.20.6",
- "rustls-pemfile",
+ "rustls-pemfile 1.0.0",
"serde",
"serde_json",
"serde_urlencoded",
@@ -2381,23 +2381,24 @@ dependencies = [
[[package]]
name = "rumqttd"
-version = "0.9.0"
+version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3a1b0c1bb4e345c681c0a13174ce78df48885b0855c06f6eadbad53efb8b5e3b"
+checksum = "916b8c94b0703befa41eb45cb0b684e7050755be1a70ebd38cfe77faa879a829"
dependencies = [
"argh",
"bytes",
"confy",
"futures-util",
+ "jackiechan",
"jemallocator",
"log",
- "mqttbytes",
"pretty_env_logger",
- "rumqttlog",
+ "rustls-pemfile 0.3.0",
+ "segments",
"serde",
"thiserror",
"tokio",
- "tokio-rustls 0.22.0",
+ "tokio-rustls 0.23.4",
"warp",
]
@@ -2461,6 +2462,15 @@ dependencies = [
[[package]]
name = "rustls-pemfile"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1ee86d63972a7c661d1536fefe8c3c8407321c3df668891286de28abcd087360"
+dependencies = [
+ "base64",
+]
+
+[[package]]
+name = "rustls-pemfile"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9"
diff --git a/crates/tests/mqtt_tests/Cargo.toml b/crates/tests/mqtt_tests/Cargo.toml
index 875f276a..4256e70c 100644
--- a/crates/tests/mqtt_tests/Cargo.toml
+++ b/crates/tests/mqtt_tests/Cargo.toml
@@ -13,6 +13,6 @@ fastrand = "1.8"
futures = "0.3"
once_cell = "1.8"
rumqttc = "0.10"
-rumqttd = "0.9"
+rumqttd = "0.11"
rumqttlog = "0.9"
tokio = { version = "1.9", default_features = false, features = [] }