From ca005e58b5dd4c5cfeebe53ae184d4b8330e2e1d Mon Sep 17 00:00:00 2001 From: Cass Unterholzner Date: Sat, 6 Sep 2025 09:21:51 -0500 Subject: [PATCH] Moving gba files into top level --- {gba/.cargo => .cargo}/config.toml | 0 .gitignore | 2 ++ gba/Cargo.lock => Cargo.lock | 0 gba/Cargo.toml => Cargo.toml | 0 gba/.gitignore | 1 - gba/rust-toolchain.toml => rust-toolchain.toml | 0 {gba/src => src}/dungeon.rs | 0 {gba/src => src}/main.rs | 0 8 files changed, 2 insertions(+), 1 deletion(-) rename {gba/.cargo => .cargo}/config.toml (100%) rename gba/Cargo.lock => Cargo.lock (100%) rename gba/Cargo.toml => Cargo.toml (100%) delete mode 100644 gba/.gitignore rename gba/rust-toolchain.toml => rust-toolchain.toml (100%) rename {gba/src => src}/dungeon.rs (100%) rename {gba/src => src}/main.rs (100%) diff --git a/gba/.cargo/config.toml b/.cargo/config.toml similarity index 100% rename from gba/.cargo/config.toml rename to .cargo/config.toml diff --git a/.gitignore b/.gitignore index e7cc09e..3f1d890 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ *.gba *.sav .vscode + +/target diff --git a/gba/Cargo.lock b/Cargo.lock similarity index 100% rename from gba/Cargo.lock rename to Cargo.lock diff --git a/gba/Cargo.toml b/Cargo.toml similarity index 100% rename from gba/Cargo.toml rename to Cargo.toml diff --git a/gba/.gitignore b/gba/.gitignore deleted file mode 100644 index c41cc9e..0000000 --- a/gba/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/target \ No newline at end of file diff --git a/gba/rust-toolchain.toml b/rust-toolchain.toml similarity index 100% rename from gba/rust-toolchain.toml rename to rust-toolchain.toml diff --git a/gba/src/dungeon.rs b/src/dungeon.rs similarity index 100% rename from gba/src/dungeon.rs rename to src/dungeon.rs diff --git a/gba/src/main.rs b/src/main.rs similarity index 100% rename from gba/src/main.rs rename to src/main.rs -- 2.51.2