From 739f81dd307f0355458ba7106b73a7b710b151d7 Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Sat, 7 Aug 2021 16:40:09 +0100 Subject: [PATCH] rename agb-entrypoint to agb-entry --- {agb-entrypoint => agb-entry}/Cargo.lock | 0 {agb-entrypoint => agb-entry}/Cargo.toml | 4 ++-- {agb-entrypoint => agb-entry}/src/lib.rs | 0 agb/Cargo.lock | 4 ++-- agb/Cargo.toml | 2 +- agb/src/lib.rs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) rename {agb-entrypoint => agb-entry}/Cargo.lock (100%) rename {agb-entrypoint => agb-entry}/Cargo.toml (71%) rename {agb-entrypoint => agb-entry}/src/lib.rs (100%) diff --git a/agb-entrypoint/Cargo.lock b/agb-entry/Cargo.lock similarity index 100% rename from agb-entrypoint/Cargo.lock rename to agb-entry/Cargo.lock diff --git a/agb-entrypoint/Cargo.toml b/agb-entry/Cargo.toml similarity index 71% rename from agb-entrypoint/Cargo.toml rename to agb-entry/Cargo.toml index ace8dfb9..b969e1d4 100644 --- a/agb-entrypoint/Cargo.toml +++ b/agb-entry/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "agb_entrypoint" +name = "agb_entry" version = "0.6.0" authors = ["Gwilym Kuiper "] edition = "2018" license = "MPL-2.0" -description = "Macro for declaring the entrypoint for a game using the agb library" +description = "Macro for declaring the entry point for a game using the agb library" [lib] proc-macro = true diff --git a/agb-entrypoint/src/lib.rs b/agb-entry/src/lib.rs similarity index 100% rename from agb-entrypoint/src/lib.rs rename to agb-entry/src/lib.rs diff --git a/agb/Cargo.lock b/agb/Cargo.lock index 8c397977..fab708b1 100644 --- a/agb/Cargo.lock +++ b/agb/Cargo.lock @@ -12,13 +12,13 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234" name = "agb" version = "0.6.0" dependencies = [ - "agb_entrypoint", + "agb_entry", "agb_image_converter", "bitflags", ] [[package]] -name = "agb_entrypoint" +name = "agb_entry" version = "0.6.0" dependencies = [ "proc-macro2", diff --git a/agb/Cargo.toml b/agb/Cargo.toml index 7093115d..8a13abc0 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -20,7 +20,7 @@ debug = true [dependencies] bitflags = "1.2" agb_image_converter = { version = "0.6.0", path = "../agb-image-converter" } -agb_entrypoint = { version = "0.6.0", path = "../agb-entrypoint" } +agb_entry = { version = "0.6.0", path = "../agb-entry" } [package.metadata.docs.rs] default-target = "thumbv6m-none-eabi" diff --git a/agb/src/lib.rs b/agb/src/lib.rs index c05bafed..70f7ef6e 100644 --- a/agb/src/lib.rs +++ b/agb/src/lib.rs @@ -22,7 +22,7 @@ pub mod sound; pub use agb_image_converter::include_gfx; -pub use agb_entrypoint::entry; +pub use agb_entry::entry; mod bitarray; pub mod interrupt;