From 647cb1b8bdaf75e6404b623ec2839953475e23f4 Mon Sep 17 00:00:00 2001 From: Lucas Schwiderski Date: Wed, 15 May 2024 19:16:34 +0200 Subject: [PATCH] Update fastrand --- Cargo.lock | 13 ++----------- lib/sdk/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7411d5e..660e7cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1055,15 +1055,6 @@ dependencies = [ "once_cell", ] -[[package]] -name = "fastrand" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" -dependencies = [ - "instant", -] - [[package]] name = "fastrand" version = "2.1.0" @@ -3108,7 +3099,7 @@ dependencies = [ "byteorder", "color-eyre", "csv-async", - "fastrand 1.9.0", + "fastrand", "futures", "futures-util", "glob", @@ -3492,7 +3483,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" dependencies = [ "cfg-if", - "fastrand 2.1.0", + "fastrand", "rustix", "windows-sys 0.52.0", ] diff --git a/lib/sdk/Cargo.toml b/lib/sdk/Cargo.toml index 63f789b..6745ff4 100644 --- a/lib/sdk/Cargo.toml +++ b/lib/sdk/Cargo.toml @@ -8,7 +8,7 @@ bitflags = "1.3.2" byteorder = "1.4.3" color-eyre = "0.6.2" csv-async = { version = "1.2.4", features = ["tokio", "serde"] } -fastrand = "1.8.0" +fastrand = "2.1.0" futures = "0.3.25" futures-util = "0.3.24" glob = "0.3.0"