mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Use my new married name in all the places it appeared (#465)
- [x] no changelog update needed
This commit is contained in:
commit
a2dc536d49
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "agb_image_converter"
|
||||
version = "0.16.0"
|
||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
description = "Library for converting graphics for use on the Game Boy Advance"
|
||||
|
@ -11,7 +11,10 @@ repository = "https://github.com/agbrs/agb"
|
|||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] }
|
||||
image = { version = "0.23", default-features = false, features = [
|
||||
"png",
|
||||
"bmp",
|
||||
] }
|
||||
syn = { version = "2", features = ["proc-macro", "parsing"] }
|
||||
proc-macro2 = "1"
|
||||
quote = "1"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "agb_macros"
|
||||
version = "0.16.0"
|
||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
description = "Macro for declaring the entry point for a game using the agb library"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "agb_sound_converter"
|
||||
version = "0.16.0"
|
||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
description = "Library for converting wavs for use on the Game Boy Advance"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "agb"
|
||||
version = "0.16.0"
|
||||
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Kuiper <gw@ilym.me>"]
|
||||
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Inzani <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
description = "Library for Game Boy Advance Development"
|
||||
license = "MPL-2.0"
|
||||
|
@ -20,7 +20,7 @@ agb_fixnum = { version = "0.16.0", path = "../agb-fixnum" }
|
|||
agb_hashmap = { version = "0.16.0", path = "../agb-hashmap" }
|
||||
bare-metal = "1"
|
||||
bilge = "0.1"
|
||||
rustc-hash = { version = "1", default-features = false }
|
||||
rustc-hash = { version = "1", default-features = false }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
default-target = "thumbv4t-none-eabi"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[book]
|
||||
authors = ["Gwilym Kuiper", "Corwin Kuiper"]
|
||||
authors = ["Gwilym Inzani", "Corwin Kuiper"]
|
||||
language = "en"
|
||||
multilingual = false
|
||||
src = "src"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pong"
|
||||
version = "0.1.0"
|
||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "the-hat-chooses-the-wizard"
|
||||
version = "0.1.0"
|
||||
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Kuiper <gw@ilym.me>"]
|
||||
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Inzani <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
@ -1,7 +1,11 @@
|
|||
[package]
|
||||
name = "the-purple-night"
|
||||
version = "0.1.0"
|
||||
authors = ["Corwin Kuiper <corwin@kuiper.dev>", "Gwilym Kuiper <gw@ilym.me>", "Sam Williams"]
|
||||
authors = [
|
||||
"Corwin Kuiper <corwin@kuiper.dev>",
|
||||
"Gwilym Inzani <gw@ilym.me>",
|
||||
"Sam Williams",
|
||||
]
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "agb_xm"
|
||||
version = "0.16.0"
|
||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||
authors = ["Gwilym Inzani <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
description = "Library for converting XM tracker files for use with agb-tracker on the Game Boy Advance. You shouldn't use this package directly"
|
||||
|
|
Loading…
Reference in a new issue