From 87dcffd1612a09e4a7d46954e3b979718ef8b3e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Jul 2022 22:18:49 +0000 Subject: [PATCH] Update rand requirement from 0.7.2 to 0.8.5 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.5) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- common/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/Cargo.toml b/common/Cargo.toml index 7aca1658..dd0f89d1 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -19,7 +19,7 @@ fxhash = "0.2.1" tracing = "0.1.10" hecs = "0.7.6" tracing-subscriber = { version = "0.2.5", default-features = false, features = ["env-filter", "smallvec", "fmt", "ansi", "chrono", "parking_lot"] } -rand = "0.7.3" +rand = "0.8.5" rand_pcg = "0.2.1" rand_distr = "0.3.0" diff --git a/server/Cargo.toml b/server/Cargo.toml index 3814eec2..d5a148ac 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -21,7 +21,7 @@ rcgen = { version = "0.9.2", default-features = false } hostname = "0.3.0" futures = "0.3.1" hecs = "0.7.6" -rand = { version = "0.7.2", features = [ "small_rng" ] } +rand = { version = "0.8.5", features = [ "small_rng" ] } fxhash = "0.2.1" na = { package = "nalgebra", version = "0.19" } slotmap = "1.0.6"