diff --git a/Cargo.toml b/Cargo.toml index c86ac81..5da0696 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "blackout" version = "0.1.0" authors = ["Nolan Darilek "] license = "MIT OR Apache-2.0" -edition = "2021" +edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -52,11 +52,11 @@ avian2d = "0.2" bevy_synthizer = "0.9" bevy_tts = { version = "0.10", default-features = false, features = ["tolk"] } coord_2d = "0.3" -here_be_dragons = { version = "0.3", features = ["serde"] } +here_be_dragons = { version = "0.4", features = ["serde"] } leafwing-input-manager = "0.16" maze_generator = "2" once_cell = "1" pathfinding = "4" -rand = "0.8" +rand = "0.9" serde = "1" shadowcast = "0.8" diff --git a/src/core.rs b/src/core.rs index 3ab0326..8fd3bad 100644 --- a/src/core.rs +++ b/src/core.rs @@ -8,7 +8,7 @@ use std::{ use avian2d::{ parry::{ math::Isometry, - query::{closest_points, distance, ClosestPoints}, + query::{ClosestPoints, closest_points, distance}, }, prelude::*, }; @@ -18,7 +18,7 @@ use bevy::{ prelude::*, }; use once_cell::sync::Lazy; -use rand::prelude::*; +use rand::{prelude::*, thread_rng}; use serde::{Deserialize, Serialize}; #[derive(Component, Clone, Debug, Default, Reflect)] diff --git a/src/sound/footstep.rs b/src/sound/footstep.rs index 2e91496..b50c441 100644 --- a/src/sound/footstep.rs +++ b/src/sound/footstep.rs @@ -2,7 +2,7 @@ use std::collections::HashMap; use bevy::{prelude::*, transform::TransformSystem}; use bevy_synthizer::{Audio, Buffer, Sound}; -use rand::prelude::*; +use rand::{prelude::*, random, rng}; use crate::core::PointLike; @@ -84,11 +84,11 @@ fn update( Some(footsteps[0].clone()) } else if !footsteps.is_empty() { let mut footsteps = footsteps.clone(); - footsteps.shuffle(&mut thread_rng()); + footsteps.shuffle(&mut rng()); let mut audio = footsteps.first().unwrap().clone(); if let Some(sound) = sound { while sound.audio == audio { - footsteps.shuffle(&mut thread_rng()); + footsteps.shuffle(&mut rng()); audio = footsteps[0].clone(); } }