1
0
Fork 0

Upgrade rumqttc to fix compiling without TLS

gh-action
Bo Jeanes 2022-09-10 07:56:09 +10:00
parent 120f62f0c7
commit b2710949bf
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@ -1101,9 +1101,9 @@ dependencies = [
[[package]] [[package]]
name = "rumqttc" name = "rumqttc"
version = "0.15.0" version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfc3304ef531b4ff76b1997b6983475ac092ca94f450c88388fa2a8f4dd80bb1" checksum = "fc15cfb87b8998026f9ea9385530865d57207d120a40ebde9521730cd9561132"
dependencies = [ dependencies = [
"async-tungstenite", "async-tungstenite",
"bytes", "bytes",

View File

@ -16,7 +16,7 @@ clap = { version = "3.2.12", features = ["derive", "env"] }
humantime-serde = "1.1.1" humantime-serde = "1.1.1"
itertools = "0.10.3" 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"] } rust_decimal = { version = "1.26.1", features = ["serde-arbitrary-precision", "serde-float", "serde_json", "maths"] }
serde = { version = "1.0.139", features = ["serde_derive"] } serde = { version = "1.0.139", features = ["serde_derive"] }
serde_json = { version = "1.0.82", features = ["raw_value"] } serde_json = { version = "1.0.82", features = ["raw_value"] }