Update fastrand

This commit is contained in:
Lucas Schwiderski 2024-05-15 19:16:34 +02:00
parent ecd235be05
commit 647cb1b8bd
Signed by: lucas
GPG key ID: E8C5DB507EBF917D
2 changed files with 3 additions and 12 deletions

13
Cargo.lock generated
View file

@ -1055,15 +1055,6 @@ dependencies = [
"once_cell", "once_cell",
] ]
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
[[package]] [[package]]
name = "fastrand" name = "fastrand"
version = "2.1.0" version = "2.1.0"
@ -3108,7 +3099,7 @@ dependencies = [
"byteorder", "byteorder",
"color-eyre", "color-eyre",
"csv-async", "csv-async",
"fastrand 1.9.0", "fastrand",
"futures", "futures",
"futures-util", "futures-util",
"glob", "glob",
@ -3492,7 +3483,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"fastrand 2.1.0", "fastrand",
"rustix", "rustix",
"windows-sys 0.52.0", "windows-sys 0.52.0",
] ]

View file

@ -8,7 +8,7 @@ bitflags = "1.3.2"
byteorder = "1.4.3" byteorder = "1.4.3"
color-eyre = "0.6.2" color-eyre = "0.6.2"
csv-async = { version = "1.2.4", features = ["tokio", "serde"] } csv-async = { version = "1.2.4", features = ["tokio", "serde"] }
fastrand = "1.8.0" fastrand = "2.1.0"
futures = "0.3.25" futures = "0.3.25"
futures-util = "0.3.24" futures-util = "0.3.24"
glob = "0.3.0" glob = "0.3.0"