diff --git a/Cargo.lock b/Cargo.lock index 996da89b..0a0f7cc5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -860,6 +860,12 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" + [[package]] name = "fd-lock" version = "3.0.12" @@ -1369,7 +1375,7 @@ name = "javy-apis" version = "2.1.1-alpha.1" dependencies = [ "anyhow", - "fastrand", + "fastrand 2.0.1", "javy", ] @@ -2769,7 +2775,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" dependencies = [ "cfg-if", - "fastrand", + "fastrand 1.9.0", "redox_syscall 0.2.10", "rustix 0.36.16", "windows-sys 0.42.0", diff --git a/crates/apis/Cargo.toml b/crates/apis/Cargo.toml index 2e43f8ef..c132c56b 100644 --- a/crates/apis/Cargo.toml +++ b/crates/apis/Cargo.toml @@ -17,5 +17,5 @@ text_encoding = [] [dependencies] anyhow = { workspace = true } -fastrand = { version = "1.9.0", optional = true } +fastrand = { version = "2.0.1", optional = true } javy = { workspace = true }