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"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
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"

View File

@ -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)]

View File

@ -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();
}
}