Use my new married name in all the places it appeared

This commit is contained in:
Gwilym Inzani 2023-07-26 10:27:49 +01:00
parent 6c7f415fb6
commit 3da10f11be
9 changed files with 18 additions and 11 deletions

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -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"

View file

@ -1,5 +1,5 @@
[book]
authors = ["Gwilym Kuiper", "Corwin Kuiper"]
authors = ["Gwilym Inzani", "Corwin Kuiper"]
language = "en"
multilingual = false
src = "src"

View file

@ -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]

View file

@ -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

View file

@ -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

View file

@ -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"