From 5531d821e1534a4cd0e5e2ab670836e23a4dbc70 Mon Sep 17 00:00:00 2001 From: TheFelidae Date: Mon, 16 Dec 2024 13:59:10 -0800 Subject: [PATCH] fixed project crate name --- Cargo.lock | 36 ++++++++++++++++++------------------ Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9c04d50..ce9b7f7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3706,24 +3706,6 @@ version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d" -[[package]] -name = "project_starlight" -version = "0.1.0" -dependencies = [ - "bevy", - "bevy_egui", - "bevy_flycam", - "bevy_meshem", - "bevy_render", - "egui", - "egui_dock", - "egui_plot", - "humantime", - "noise", - "rand", - "rayon", -] - [[package]] name = "quick-xml" version = "0.36.2" @@ -4187,6 +4169,24 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6eae92052b72ef70dafa16eddbabffc77e5ca3574be2f7bc1127b36f0a7ad7f2" +[[package]] +name = "starlight_engine" +version = "0.1.0" +dependencies = [ + "bevy", + "bevy_egui", + "bevy_flycam", + "bevy_meshem", + "bevy_render", + "egui", + "egui_dock", + "egui_plot", + "humantime", + "noise", + "rand", + "rayon", +] + [[package]] name = "static_assertions" version = "1.1.0" diff --git a/Cargo.toml b/Cargo.toml index 8f7ee08..3a5d18d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "project_starlight" +name = "starlight_engine" description = "A game made with Bevy" authors = ["Mad Star Studio, LLC"] license = "GPLv3"