Mark v0.7.0

Mark new version, update the lockfile, and autoformat the project.
This commit is contained in:
2025-12-22 11:06:34 -06:00
parent b8c28529e6
commit ba01d8137f
3 changed files with 5 additions and 8 deletions

6
Cargo.lock generated
View File

@@ -171,7 +171,7 @@ dependencies = [
[[package]] [[package]]
name = "another-boids-in-rust" name = "another-boids-in-rust"
version = "0.7.0-dev1" version = "0.7.0"
dependencies = [ dependencies = [
"bevy", "bevy",
"bevy-inspector-egui", "bevy-inspector-egui",
@@ -4188,9 +4188,9 @@ dependencies = [
[[package]] [[package]]
name = "serde_json" name = "serde_json"
version = "1.0.145" version = "1.0.146"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8"
dependencies = [ dependencies = [
"itoa", "itoa",
"memchr", "memchr",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "another-boids-in-rust" name = "another-boids-in-rust"
version = "0.7.0-dev1" version = "0.7.0"
edition = "2024" edition = "2024"
license = "AGPL-3.0-only" license = "AGPL-3.0-only"

View File

@@ -3,10 +3,7 @@ use bevy::prelude::*;
mod birdoids; mod birdoids;
mod debug_plugin; mod debug_plugin;
use bevy_inspector_egui::{ use bevy_inspector_egui::{bevy_egui::EguiPlugin, quick::ResourceInspectorPlugin};
bevy_egui::EguiPlugin,
quick::{ResourceInspectorPlugin},
};
use birdoids::BoidsPlugin; use birdoids::BoidsPlugin;
use debug_plugin::BoidsDebugPlugin; use debug_plugin::BoidsDebugPlugin;