diff --git a/Cargo.lock b/Cargo.lock index bfb2582..5a2e465 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -62,7 +62,7 @@ dependencies = [ "ndarray", "ndarray-rand", "rand", - "rand_chacha", + "rand_chacha 0.10.0", "rand_distr", "rayon", "serde", @@ -226,8 +226,8 @@ version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "rand_chacha", - "rand_core", + "rand_chacha 0.9.0", + "rand_core 0.9.3", ] [[package]] @@ -237,7 +237,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core", + "rand_core 0.9.3", +] + +[[package]] +name = "rand_chacha" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb" +dependencies = [ + "ppv-lite86", + "rand_core 0.10.0", ] [[package]] @@ -249,6 +259,12 @@ dependencies = [ "getrandom", ] +[[package]] +name = "rand_core" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" + [[package]] name = "rand_distr" version = "0.5.1" diff --git a/Cargo.toml b/Cargo.toml index 24c1b17..8261114 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,4 +22,4 @@ tracing = "0.1" [dev-dependencies] approx = "0.5" -rand_chacha = "0.9" +rand_chacha = "0.10"