From 0d73f337ec41179e36ae12620924b283c2f9245d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 04:50:49 +0000 Subject: [PATCH] Update rand requirement from 0.8.5 to 0.9.0 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.8.5...0.9.0) --- updated-dependencies: - dependency-name: rand dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- common/Cargo.toml | 2 +- save/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/Cargo.toml b/common/Cargo.toml index 93e4c3b9..978c06d3 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -20,7 +20,7 @@ fxhash = "0.2.1" tracing = "0.1.10" hecs = { workspace = true } tracing-subscriber = { version = "0.3.15", default-features = false, features = ["env-filter", "smallvec", "fmt", "ansi", "time", "parking_lot"] } -rand = "0.8.5" +rand = "0.9.0" rand_pcg = "0.3.1" rand_distr = "0.4.3" diff --git a/save/Cargo.toml b/save/Cargo.toml index ece37d31..5e205cb0 100644 --- a/save/Cargo.toml +++ b/save/Cargo.toml @@ -14,7 +14,7 @@ zstd = { package = "zstd-safe", version = "7.1.0", default-features = false, fea [dev-dependencies] tempfile = "3.4" criterion = "0.5" -rand = { version = "0.8.5", features = ["small_rng"] } +rand = { version = "0.9.0", features = ["small_rng"] } [[bench]] name = "bench" diff --git a/server/Cargo.toml b/server/Cargo.toml index af577793..609a5f74 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -20,7 +20,7 @@ anyhow = "1.0.26" rcgen = { version = "0.13.1", default-features = false, features = ["ring"] } hostname = "0.4.0" hecs = { workspace = true } -rand = { version = "0.8.5", features = ["small_rng"] } +rand = { version = "0.9.0", features = ["small_rng"] } fxhash = "0.2.1" nalgebra = { workspace = true } libm = "0.2.6"