Bump edition.

This commit is contained in:
Nolan Darilek 2025-02-23 09:07:18 -06:00
parent 4c95ddf296
commit 8b44b58e35
3 changed files with 8 additions and 8 deletions

View File

@ -3,7 +3,7 @@ name = "blackout"
version = "0.1.0" version = "0.1.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"] authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
license = "MIT OR Apache-2.0" 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 # 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_synthizer = "0.9"
bevy_tts = { version = "0.10", default-features = false, features = ["tolk"] } bevy_tts = { version = "0.10", default-features = false, features = ["tolk"] }
coord_2d = "0.3" 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" leafwing-input-manager = "0.16"
maze_generator = "2" maze_generator = "2"
once_cell = "1" once_cell = "1"
pathfinding = "4" pathfinding = "4"
rand = "0.8" rand = "0.9"
serde = "1" serde = "1"
shadowcast = "0.8" shadowcast = "0.8"

View File

@ -8,7 +8,7 @@ use std::{
use avian2d::{ use avian2d::{
parry::{ parry::{
math::Isometry, math::Isometry,
query::{closest_points, distance, ClosestPoints}, query::{ClosestPoints, closest_points, distance},
}, },
prelude::*, prelude::*,
}; };
@ -18,7 +18,7 @@ use bevy::{
prelude::*, prelude::*,
}; };
use once_cell::sync::Lazy; use once_cell::sync::Lazy;
use rand::prelude::*; use rand::{prelude::*, thread_rng};
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
#[derive(Component, Clone, Debug, Default, Reflect)] #[derive(Component, Clone, Debug, Default, Reflect)]

View File

@ -2,7 +2,7 @@ use std::collections::HashMap;
use bevy::{prelude::*, transform::TransformSystem}; use bevy::{prelude::*, transform::TransformSystem};
use bevy_synthizer::{Audio, Buffer, Sound}; use bevy_synthizer::{Audio, Buffer, Sound};
use rand::prelude::*; use rand::{prelude::*, random, rng};
use crate::core::PointLike; use crate::core::PointLike;
@ -84,11 +84,11 @@ fn update(
Some(footsteps[0].clone()) Some(footsteps[0].clone())
} else if !footsteps.is_empty() { } else if !footsteps.is_empty() {
let mut footsteps = footsteps.clone(); let mut footsteps = footsteps.clone();
footsteps.shuffle(&mut thread_rng()); footsteps.shuffle(&mut rng());
let mut audio = footsteps.first().unwrap().clone(); let mut audio = footsteps.first().unwrap().clone();
if let Some(sound) = sound { if let Some(sound) = sound {
while sound.audio == audio { while sound.audio == audio {
footsteps.shuffle(&mut thread_rng()); footsteps.shuffle(&mut rng());
audio = footsteps[0].clone(); audio = footsteps[0].clone();
} }
} }