upgrade fastrand = "2.0.0"

This commit is contained in:
ManyTheFish 2023-08-09 12:08:21 +02:00
parent 60c11dbdbd
commit 359ede4862
2 changed files with 3 additions and 12 deletions

13
Cargo.lock generated
View File

@ -1387,15 +1387,6 @@ dependencies = [
"libc",
]
[[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.0.0"
@ -1590,7 +1581,7 @@ version = "1.3.1"
dependencies = [
"arbitrary",
"clap",
"fastrand 1.9.0",
"fastrand",
"milli",
"serde",
"serde_json",
@ -3946,7 +3937,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc02fddf48964c42031a0b3fe0428320ecf3a73c401040fc0096f97794310651"
dependencies = [
"cfg-if",
"fastrand 2.0.0",
"fastrand",
"redox_syscall 0.3.5",
"rustix 0.38.7",
"windows-sys 0.48.0",

View File

@ -13,7 +13,7 @@ license.workspace = true
[dependencies]
arbitrary = { version = "1.3.0", features = ["derive"] }
clap = { version = "4.3.0", features = ["derive"] }
fastrand = "1.9.0"
fastrand = "2.0.0"
milli = { path = "../milli" }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = { version = "1.0.95", features = ["preserve_order"] }