summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Müller <neikos@neikos.email>2024-04-04 16:11:57 +0200
committerMarcel Müller <neikos@neikos.email>2024-04-04 16:11:57 +0200
commit0cb2eb66585e9d80008766a2f9bcc3867fb8ff01 (patch)
tree49acb349215a1817cfdde73d5c5074cf130fae89
parentc0fc75025cba765820fa1b95b896ba291591313e (diff)
Add futures-timer crate dependency
Signed-off-by: Marcel Müller <neikos@neikos.email>
-rw-r--r--Cargo.lock7
-rw-r--r--Cargo.toml1
2 files changed, 8 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 696e83e..e08663d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -204,6 +204,7 @@ name = "cloudmqtt"
version = "0.5.0"
dependencies = [
"futures",
+ "futures-timer",
"mqtt-format",
"paste",
"stable_deref_trait",
@@ -327,6 +328,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
[[package]]
+name = "futures-timer"
+version = "3.0.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
+
+[[package]]
name = "futures-util"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index 19041a3..0266690 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,6 +20,7 @@ debug = ["winnow/debug"]
[dependencies]
futures = "0.3.30"
+futures-timer = "3.0.3"
mqtt-format = { version = "0.5.0", path = "mqtt-format", features = [
"yoke",
"mqttv5",