Bump rand_pcg to 0.3.1. Closes #554

This commit is contained in:
ice_iix 2021-06-18 13:44:32 -07:00
parent b06a14bc18
commit cf5a051661
2 changed files with 4 additions and 4 deletions

6
Cargo.lock generated
View File

@ -1970,9 +1970,9 @@ dependencies = [
[[package]]
name = "rand_pcg"
version = "0.3.0"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7de198537002b913568a3847e53535ace266f93526caf5c360ec41d72c5787f0"
checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
dependencies = [
"rand_core 0.6.2",
]
@ -2382,7 +2382,7 @@ dependencies = [
"lazy_static",
"log",
"rand 0.8.3",
"rand_pcg 0.3.0",
"rand_pcg 0.3.1",
"reqwest",
"rsa_public_encrypt_pkcs1",
"serde",

View File

@ -37,7 +37,7 @@ zip = { version = "0.5.13", features = ["deflate"], default-features = false }
image = "0.23.14"
getrandom = { version = "0.2.3", features = ["js"] }
rand = "0.8.3"
rand_pcg = "0.3.0"
rand_pcg = "0.3.1"
base64 = "0.13.0"
log = { version = "0.4.14", features = ["std"] }
cgmath = "0.17.0"