diff --git a/Cargo.lock b/Cargo.lock index ec87e27..c1d955f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1751,7 +1751,7 @@ dependencies = [ "libc", "rand_chacha 0.1.1", "rand_core 0.4.2", - "rand_hc 0.1.0", + "rand_hc", "rand_isaac", "rand_jitter", "rand_os", @@ -1762,14 +1762,13 @@ dependencies = [ [[package]] name = "rand" -version = "0.8.4" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ "libc", "rand_chacha 0.3.1", "rand_core 0.6.3", - "rand_hc 0.3.1", ] [[package]] @@ -1825,15 +1824,6 @@ dependencies = [ "rand_core 0.3.1", ] -[[package]] -name = "rand_hc" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" -dependencies = [ - "rand_core 0.6.3", -] - [[package]] name = "rand_isaac" version = "0.1.1" @@ -2009,7 +1999,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3e9243a1f8b312c5535c09de102cc061416515201b194ee4f0a9a76da20ebf4" dependencies = [ "num 0.4.0", - "rand 0.8.4", + "rand 0.8.5", "simple_asn1", ] @@ -2291,7 +2281,7 @@ dependencies = [ "instant", "lazy_static", "log", - "rand 0.8.4", + "rand 0.8.5", "rand_pcg 0.3.1", "reqwest", "rsa_public_encrypt_pkcs1", @@ -2364,7 +2354,7 @@ checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" dependencies = [ "cfg-if 1.0.0", "libc", - "rand 0.8.4", + "rand 0.8.5", "redox_syscall", "remove_dir_all", "winapi", diff --git a/Cargo.toml b/Cargo.toml index cf2f699..06e8d25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ flate2 = { version = "1.0.22", features = ["rust_backend"], default-features = f zip = { version = "0.5.13", features = ["deflate"], default-features = false } image = "0.23.14" getrandom = { version = "0.2.3", features = ["js"] } -rand = "0.8.4" +rand = "0.8.5" rand_pcg = "0.3.1" base64 = "0.13.0" log = { version = "0.4.14", features = ["std"] }