From b2710949bfdc5706f2aff2efd3afefdc298d89da Mon Sep 17 00:00:00 2001 From: Bo Jeanes Date: Sat, 10 Sep 2022 07:56:09 +1000 Subject: [PATCH] Upgrade rumqttc to fix compiling without TLS --- Cargo.lock | 4 ++-- modbus-mqtt/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9888a81..be33d69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1101,9 +1101,9 @@ dependencies = [ [[package]] name = "rumqttc" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfc3304ef531b4ff76b1997b6983475ac092ca94f450c88388fa2a8f4dd80bb1" +checksum = "fc15cfb87b8998026f9ea9385530865d57207d120a40ebde9521730cd9561132" dependencies = [ "async-tungstenite", "bytes", diff --git a/modbus-mqtt/Cargo.toml b/modbus-mqtt/Cargo.toml index b09e6fc..1ad0556 100644 --- a/modbus-mqtt/Cargo.toml +++ b/modbus-mqtt/Cargo.toml @@ -16,7 +16,7 @@ clap = { version = "3.2.12", features = ["derive", "env"] } humantime-serde = "1.1.1" itertools = "0.10.3" -rumqttc = { version = "0.15.0", default-features = true, features = ["url"] } # https://github.com/bytebeamio/rumqtt/issues/446 +rumqttc = { version = "0.16.0", default-features = false, features = ["url"] } rust_decimal = { version = "1.26.1", features = ["serde-arbitrary-precision", "serde-float", "serde_json", "maths"] } serde = { version = "1.0.139", features = ["serde_derive"] } serde_json = { version = "1.0.82", features = ["raw_value"] }