mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-11 09:31:34 +11:00
rename agb-entrypoint to agb-entry
This commit is contained in:
parent
861ecc626a
commit
739f81dd30
|
@ -1,10 +1,10 @@
|
|||
[package]
|
||||
name = "agb_entrypoint"
|
||||
name = "agb_entry"
|
||||
version = "0.6.0"
|
||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||
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
|
4
agb/Cargo.lock
generated
4
agb/Cargo.lock
generated
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue