Update Rust crate rand to 0.8.5

This commit is contained in:
Renovate Bot 2022-02-24 20:36:02 +00:00
parent 8c2da81e11
commit fc9c8f78fe
No known key found for this signature in database
GPG key ID: 81C63AE1C224182B
2 changed files with 3 additions and 13 deletions

14
agb-macros/Cargo.lock generated
View file

@ -61,14 +61,13 @@ dependencies = [
[[package]] [[package]]
name = "rand" name = "rand"
version = "0.8.4" version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [ dependencies = [
"libc", "libc",
"rand_chacha", "rand_chacha",
"rand_core", "rand_core",
"rand_hc",
] ]
[[package]] [[package]]
@ -90,15 +89,6 @@ dependencies = [
"getrandom", "getrandom",
] ]
[[package]]
name = "rand_hc"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
"rand_core",
]
[[package]] [[package]]
name = "syn" name = "syn"
version = "1.0.86" version = "1.0.86"

View file

@ -13,4 +13,4 @@ proc-macro = true
syn = { version = "1.0.86", features = ["full", "extra-traits"] } syn = { version = "1.0.86", features = ["full", "extra-traits"] }
proc-macro2 = "1.0.36" proc-macro2 = "1.0.36"
quote = "1.0.15" quote = "1.0.15"
rand = "0.8.4" rand = "0.8.5"