diff --git a/Cargo.lock b/Cargo.lock index a47e855d..dba8879b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ name = "animation" version = "0.1.0" dependencies = [ "getrandom 0.2.8", - "rand 0.8.5", + "rand 0.8.6", "seed", ] @@ -235,7 +235,7 @@ version = "0.1.0" dependencies = [ "awsm_web", "nalgebra", - "rand 0.8.5", + "rand 0.8.6", "seed", "shipyard", ] @@ -708,7 +708,7 @@ version = "0.1.0" dependencies = [ "gloo-console", "pulldown-cmark", - "rand 0.8.5", + "rand 0.8.6", "regex", "scarlet", "seed", @@ -1659,7 +1659,7 @@ dependencies = [ "k256", "p256", "p384", - "rand 0.8.5", + "rand 0.8.6", "rsa", "serde", "serde_json", @@ -1914,7 +1914,7 @@ dependencies = [ "mime", "mime_guess", "quick-error", - "rand 0.8.5", + "rand 0.8.6", "safemem", "tempfile", "twoway", @@ -2023,7 +2023,7 @@ dependencies = [ "num-integer", "num-iter", "num-traits", - "rand 0.8.5", + "rand 0.8.6", "smallvec", "zeroize", ] @@ -2436,9 +2436,9 @@ dependencies = [ [[package]] name = "rand" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" dependencies = [ "libc", "rand_chacha 0.3.1", @@ -2782,7 +2782,7 @@ dependencies = [ "gloo-utils", "indexmap", "js-sys", - "rand 0.8.5", + "rand 0.8.6", "serde", "serde-wasm-bindgen 0.5.0", "uuid", @@ -3386,7 +3386,7 @@ dependencies = [ "http", "httparse", "log", - "rand 0.8.5", + "rand 0.8.6", "sha-1 0.10.1", "thiserror", "url 2.3.1", diff --git a/Cargo.toml b/Cargo.toml index 4eec8093..fd97dca0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,7 +70,7 @@ gloo-file = { version = "0.2.3", features = ["futures"] } gloo-utils = "0.1.6" indexmap = "1.9.2" js-sys = "0.3.61" -rand = { version = "0.8.5", features = ["small_rng"] } +rand = { version = "0.8.6", features = ["small_rng"] } uuid = { version = "1.3.0", features = ["v4"] } wasm-bindgen = "0.2.84" wasm-bindgen-futures = "0.4.34" diff --git a/examples/animation/Cargo.toml b/examples/animation/Cargo.toml index 02c63cc8..1a03a7a3 100644 --- a/examples/animation/Cargo.toml +++ b/examples/animation/Cargo.toml @@ -9,6 +9,6 @@ crate-type = ["cdylib"] [dependencies] seed = {path = "../../"} -rand = "0.8.5" +rand = "0.8.6" # https://docs.rs/getrandom/0.2.0/getrandom/#webassembly-support getrandom = { version = "0.2.8", features = ["js"] } diff --git a/examples/bunnies/Cargo.toml b/examples/bunnies/Cargo.toml index a267a4e4..713dbf2f 100644 --- a/examples/bunnies/Cargo.toml +++ b/examples/bunnies/Cargo.toml @@ -11,7 +11,7 @@ path = "src/empty_lib.rs" [dependencies] seed = { path = "../../" } -rand = { version = "0.8.5", features = ["small_rng"] } +rand = { version = "0.8.6", features = ["small_rng"] } nalgebra = "0.32.1" awsm_web = { version = "0.38.0", features = ["tick", "webgl", "loaders", "audio", "serde_iso"], default-features = false } shipyard = { version = "0.6.2", features = ["thread_local"], default-features = false } diff --git a/examples/el_key/Cargo.toml b/examples/el_key/Cargo.toml index 031f8439..558211ac 100644 --- a/examples/el_key/Cargo.toml +++ b/examples/el_key/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] seed = { path = "../../" } -rand = { version = "0.8.5", features = ["small_rng"] } +rand = { version = "0.8.6", features = ["small_rng"] } regex = "1.7.1" scarlet = "1.1.0" static_assertions = "1.1.0"