diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4a61818..85b04e4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,12 +17,12 @@ on: # Configure constants for this workflow. env: # The base filename of the binary produced by `cargo build`. - BINARY: wheel-game + BINARY: wheel-escape # The name to use for the packaged application produced by this workflow. - PACKAGE_NAME: wheel-game + PACKAGE_NAME: wheel-escape # The itch.io page to upload to, in the format: `user-name/project-name`. # Comment this out to disable. - ITCH_TARGET: inspiredjourneys/wheel-game + ITCH_TARGET: inspiredjourneys/wheel-escape # The organization or author that owns the rights to the game. OWNER: inspiredjourneys # The path to the assets directory. diff --git a/Cargo.lock b/Cargo.lock index 5c70d71..9fcd6c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -823,15 +823,6 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c115c97a5c8a263bd0aa7001b999772c744ac5ba797d07c86f25734ce381ea69" -[[package]] -name = "bevy_quickstart" -version = "0.1.0" -dependencies = [ - "bevy", - "log", - "rand", -] - [[package]] name = "bevy_reflect" version = "0.14.0" @@ -1010,15 +1001,6 @@ dependencies = [ "wasm-bindgen-futures", ] -[[package]] -name = "wheel_game" -version = "0.1.0" -dependencies = [ - "bevy", - "log", - "rand", -] - [[package]] name = "bevy_text" version = "0.14.0" @@ -4166,6 +4148,15 @@ dependencies = [ "web-sys", ] +[[package]] +name = "wheel-escape" +version = "0.1.0" +dependencies = [ + "bevy", + "log", + "rand", +] + [[package]] name = "widestring" version = "1.1.0" diff --git a/Cargo.toml b/Cargo.toml index 683972d..db5c396 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "wheel-game" +name = "wheel-escape" authors = ["Steve Pryde "] version = "0.1.0" edition = "2021"