summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDidier Wenzek <didier.wenzek@acidalie.com>2022-07-25 14:01:55 +0200
committerGitHub <noreply@github.com>2022-07-25 14:01:55 +0200
commit87ed970eab78f8c2dc043ec2259d104da2352cbd (patch)
tree0031665806d1d607c43c034c49b1826ed657d907
parentf759b27c7159040681028da1d917b756cd6798e6 (diff)
parent3a0b6f8bad24c132dd777dd42a3094d4a60c42c4 (diff)
Merge pull request #1295 from thin-edge/dependabot/cargo/fastrand-1.8.0
Bump fastrand from 1.7.0 to 1.8.0
-rw-r--r--Cargo.lock4
-rw-r--r--crates/common/mqtt_channel/Cargo.toml2
-rw-r--r--crates/tests/mqtt_tests/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d2a4264f..51299c3b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -940,9 +940,9 @@ checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
[[package]]
name = "fastrand"
-version = "1.7.0"
+version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
+checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [
"instant",
]
diff --git a/crates/common/mqtt_channel/Cargo.toml b/crates/common/mqtt_channel/Cargo.toml
index 2cd6a833..c4a2e352 100644
--- a/crates/common/mqtt_channel/Cargo.toml
+++ b/crates/common/mqtt_channel/Cargo.toml
@@ -10,7 +10,7 @@ rust-version = "1.58.1"
[dependencies]
async-trait = "0.1"
futures = "0.3"
-fastrand = "1.6"
+fastrand = "1.8"
rumqttc = "0.10"
thiserror = "1.0"
tokio = { version = "1.12", features = ["rt", "time"] }
diff --git a/crates/tests/mqtt_tests/Cargo.toml b/crates/tests/mqtt_tests/Cargo.toml
index 989c510b..875f276a 100644
--- a/crates/tests/mqtt_tests/Cargo.toml
+++ b/crates/tests/mqtt_tests/Cargo.toml
@@ -9,7 +9,7 @@ rust-version = "1.58.1"
[dependencies]
anyhow = "1.0"
-fastrand = "1.5"
+fastrand = "1.8"
futures = "0.3"
once_cell = "1.8"
rumqttc = "0.10"