diff --git a/Cargo.lock b/Cargo.lock index 6e7ebc5d..ce5f147a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -916,15 +916,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" -[[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.1" @@ -1312,15 +1303,6 @@ dependencies = [ "serde", ] -[[package]] -name = "instant" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" -dependencies = [ - "cfg-if", -] - [[package]] name = "io-extras" version = "0.13.2" @@ -1440,7 +1422,7 @@ name = "javy-apis" version = "2.1.1-alpha.1" dependencies = [ "anyhow", - "fastrand 1.9.0", + "fastrand", "javy", ] @@ -2840,7 +2822,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ "cfg-if", - "fastrand 2.0.1", + "fastrand", "redox_syscall 0.3.5", "rustix 0.38.8", "windows-sys 0.48.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 }