Rename agb-entry to agb-macro in cargo.tomls

This commit is contained in:
Gwilym Kuiper 2021-08-15 20:37:36 +01:00
parent 6f229b3426
commit 4a6ef023f5
5 changed files with 15 additions and 15 deletions

2
agb-entry/Cargo.lock generated
View file

@ -3,7 +3,7 @@
version = 3 version = 3
[[package]] [[package]]
name = "agb_entry" name = "agb_macros"
version = "0.1.0" version = "0.1.0"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",

View file

@ -1,5 +1,5 @@
[package] [package]
name = "agb_entry" name = "agb_macros"
version = "0.1.0" version = "0.1.0"
authors = ["Gwilym Kuiper <gw@ilym.me>"] authors = ["Gwilym Kuiper <gw@ilym.me>"]
edition = "2018" edition = "2018"

22
agb/Cargo.lock generated
View file

@ -12,21 +12,11 @@ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
name = "agb" name = "agb"
version = "0.6.0" version = "0.6.0"
dependencies = [ dependencies = [
"agb_entry",
"agb_image_converter", "agb_image_converter",
"agb_macros",
"bitflags", "bitflags",
] ]
[[package]]
name = "agb_entry"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"rand",
"syn",
]
[[package]] [[package]]
name = "agb_image_converter" name = "agb_image_converter"
version = "0.6.0" version = "0.6.0"
@ -39,6 +29,16 @@ dependencies = [
"toml", "toml",
] ]
[[package]]
name = "agb_macros"
version = "0.1.0"
dependencies = [
"proc-macro2",
"quote",
"rand",
"syn",
]
[[package]] [[package]]
name = "autocfg" name = "autocfg"
version = "1.0.1" version = "1.0.1"

View file

@ -20,7 +20,7 @@ debug = true
[dependencies] [dependencies]
bitflags = "1.2" bitflags = "1.2"
agb_image_converter = { version = "0.6.0", path = "../agb-image-converter" } agb_image_converter = { version = "0.6.0", path = "../agb-image-converter" }
agb_entry = { version = "0.1.0", path = "../agb-entry" } agb_macros = { version = "0.1.0", path = "../agb-entry" }
[package.metadata.docs.rs] [package.metadata.docs.rs]
default-target = "thumbv6m-none-eabi" default-target = "thumbv6m-none-eabi"

View file

@ -22,7 +22,7 @@ pub mod sound;
pub use agb_image_converter::include_gfx; pub use agb_image_converter::include_gfx;
pub use agb_entry::entry; pub use agb_macros::entry;
mod bitarray; mod bitarray;
pub mod interrupt; pub mod interrupt;