From f662325acc20e00470a4ea2965e73e2e674fdd80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Jul 2021 11:39:06 +0000 Subject: [PATCH] Update rand requirement from 0.7.3 to 0.8.4 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.7.3...0.8.4) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- crates/bevy_ecs/Cargo.toml | 2 +- crates/bevy_ecs/hecs/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 89acfcf0864c8..dc132c4c054fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ bevy_winit = { path = "crates/bevy_winit", optional = true, version = "0.2.1" } bevy_gilrs = { path = "crates/bevy_gilrs", optional = true, version = "0.2.1" } [dev-dependencies] -rand = "0.7.3" +rand = "0.8.4" serde = { version = "1", features = ["derive"] } log = "0.4" diff --git a/crates/bevy_ecs/Cargo.toml b/crates/bevy_ecs/Cargo.toml index ccc2135c0662c..7b972cb5a2e64 100644 --- a/crates/bevy_ecs/Cargo.toml +++ b/crates/bevy_ecs/Cargo.toml @@ -20,7 +20,7 @@ profiler = [] bevy_hecs = { path = "hecs", features = ["macros", "serialize"], version = "0.2.1" } bevy_tasks = { path = "../bevy_tasks", version = "0.2.1" } bevy_utils = { path = "../bevy_utils", version = "0.2.1" } -rand = "0.7.3" +rand = "0.8.4" fixedbitset = "0.3.1" downcast-rs = "1.2.0" parking_lot = "0.11.0" diff --git a/crates/bevy_ecs/hecs/Cargo.toml b/crates/bevy_ecs/hecs/Cargo.toml index 63befdee89ecc..895adf668ed72 100644 --- a/crates/bevy_ecs/hecs/Cargo.toml +++ b/crates/bevy_ecs/hecs/Cargo.toml @@ -31,7 +31,7 @@ bevy_hecs_macros = { path = "macros", version = "0.2.1", optional = true } bevy_utils = { path = "../../bevy_utils", version = "0.2.1" } lazy_static = { version = "1.4.0", optional = true, features = ["spin_no_std"] } serde = { version = "1", features = ["derive"], optional = true} -rand = "0.7.3" +rand = "0.8.4" [dev-dependencies] bencher = "0.1.5"