From 02d7a676fbf71f70a45439ae0c18a9008e267ea4 Mon Sep 17 00:00:00 2001 From: amokfa Date: Tue, 22 Oct 2024 14:31:38 +0530 Subject: [PATCH] pin rumqttc version --- Cargo.lock | 9 +-------- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9469668..9fe08ca7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -674,12 +674,6 @@ dependencies = [ "windows-sys 0.59.0", ] -[[package]] -name = "fixedbitset" -version = "0.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" - [[package]] name = "flume" version = "0.10.14" @@ -2258,10 +2252,9 @@ dependencies = [ [[package]] name = "rumqttc" version = "0.24.0" -source = "git+https://github.com/bytebeamio/rumqtt#2377e4e2c57bbcbdb1b2d5372556f8b3977b03b5" +source = "git+https://github.com/bytebeamio/rumqtt?rev=c5bfdd74a535cadd518c12f7667e64f1ec68858c#c5bfdd74a535cadd518c12f7667e64f1ec68858c" dependencies = [ "bytes 1.7.1", - "fixedbitset", "flume 0.11.0", "futures-util", "log", diff --git a/Cargo.toml b/Cargo.toml index 2eeda661..2f5b0cd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ flume = "0.10" futures-util = "0.3" log = "0.4" rand = "0.8" -rumqttc = { git = "https://github.com/bytebeamio/rumqtt" } +rumqttc = { git = "https://github.com/bytebeamio/rumqtt", rev = "c5bfdd74a535cadd518c12f7667e64f1ec68858c" } serde = { version = "1", features = ["derive"] } serde_json = "1.0" tempdir = "0.3"