-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
49 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb-debug" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
edition = "2021" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
license = "MPL-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "agb_fixnum" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
description = "Library for abstracting over fixed precision numbers. Designed for use with the agb library for the Game Boy Advance" | ||
repository = "https://github.com/agbrs/agb" | ||
|
||
[dependencies] | ||
agb_macros = { version = "0.21.0", path = "../agb-macros" } | ||
agb_macros = { version = "0.21.1", path = "../agb-macros" } | ||
num-traits = { version = "0.2", default-features = false } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb-gbafix" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
edition = "2021" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
license = "MPL-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_image_converter" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_macros" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_sound_converter" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Corwin Kuiper <[email protected]>", "Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
description = "Library for Game Boy Advance Development" | ||
|
@@ -17,11 +17,11 @@ multiboot = [] | |
|
||
[dependencies] | ||
bitflags = "2" | ||
agb_image_converter = { version = "0.21.0", path = "../agb-image-converter" } | ||
agb_sound_converter = { version = "0.21.0", path = "../agb-sound-converter" } | ||
agb_macros = { version = "0.21.0", path = "../agb-macros" } | ||
agb_fixnum = { version = "0.21.0", path = "../agb-fixnum" } | ||
agb_hashmap = { version = "0.21.0", path = "../agb-hashmap", features = ["allocator_api"] } | ||
agb_image_converter = { version = "0.21.1", path = "../agb-image-converter" } | ||
agb_sound_converter = { version = "0.21.1", path = "../agb-sound-converter" } | ||
agb_macros = { version = "0.21.1", path = "../agb-macros" } | ||
agb_fixnum = { version = "0.21.1", path = "../agb-fixnum" } | ||
agb_hashmap = { version = "0.21.1", path = "../agb-hashmap", features = ["allocator_api"] } | ||
bilge = "0.2" | ||
qrcodegen-no-heap = { version = "1.8", optional = true } | ||
portable-atomic = { version = "1.6.0", default-features = false, features = ["unsafe-assume-single-core", "fallback"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ authors = ["Gwilym Inzani <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
agb = { version = "0.21.0", path = "../../../agb" } | ||
agb = { version = "0.21.1", path = "../../../agb" } | ||
|
||
[profile.dev] | ||
opt-level = 3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_midi_core" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -14,5 +14,5 @@ midly = { version = "0.5", default-features = false, features = [ | |
"std", | ||
] } | ||
|
||
agb_tracker_interop = { version = "0.21.0", path = "../agb-tracker-interop" } | ||
agb_fixnum = { version = "0.21.0", path = "../../agb-fixnum" } | ||
agb_tracker_interop = { version = "0.21.1", path = "../agb-tracker-interop" } | ||
agb_fixnum = { version = "0.21.1", path = "../../agb-fixnum" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_midi" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -11,8 +11,8 @@ repository = "https://github.com/agbrs/agb" | |
proc-macro = true | ||
|
||
[dependencies] | ||
agb_tracker_interop = { version = "0.21.0", path = "../agb-tracker-interop", features = ["quote"] } | ||
agb_midi_core = { version = "0.21.0", path = "../agb-midi-core" } | ||
agb_tracker_interop = { version = "0.21.1", path = "../agb-tracker-interop", features = ["quote"] } | ||
agb_midi_core = { version = "0.21.1", path = "../agb-midi-core" } | ||
|
||
proc-macro-error = "1" | ||
proc-macro2 = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_tracker_interop" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -15,4 +15,4 @@ std = [] | |
[dependencies] | ||
quote = { version = "1", optional = true } | ||
proc-macro2 = { version = "1", optional = true } | ||
agb_fixnum = { version = "0.21.0", path = "../../agb-fixnum" } | ||
agb_fixnum = { version = "0.21.1", path = "../../agb-fixnum" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_tracker" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -16,15 +16,15 @@ xm = ["dep:agb_xm"] | |
midi = ["dep:agb_midi"] | ||
|
||
[dependencies] | ||
agb_midi = { version = "0.21.0", path = "../agb-midi", optional = true } | ||
agb_xm = { version = "0.21.0", path = "../agb-xm", optional = true } | ||
agb = { version = "0.21.0", path = "../../agb", optional = true } | ||
agb_midi = { version = "0.21.1", path = "../agb-midi", optional = true } | ||
agb_xm = { version = "0.21.1", path = "../agb-xm", optional = true } | ||
agb = { version = "0.21.1", path = "../../agb", optional = true } | ||
|
||
agb_fixnum = { version = "0.21.0", path = "../../agb-fixnum" } | ||
agb_tracker_interop = { version = "0.21.0", path = "../agb-tracker-interop", default-features = false } | ||
agb_fixnum = { version = "0.21.1", path = "../../agb-fixnum" } | ||
agb_tracker_interop = { version = "0.21.1", path = "../agb-tracker-interop", default-features = false } | ||
|
||
[build-dependencies] | ||
agb_fixnum = { version = "0.21.0", path = "../../agb-fixnum" } | ||
agb_fixnum = { version = "0.21.1", path = "../../agb-fixnum" } | ||
|
||
[profile.dev] | ||
opt-level = 3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_xm_core" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -13,7 +13,7 @@ proc-macro2 = "1" | |
quote = "1" | ||
syn = "2" | ||
|
||
agb_tracker_interop = { version = "0.21.0", path = "../agb-tracker-interop", default-features = false } | ||
agb_fixnum = { version = "0.21.0", path = "../../agb-fixnum" } | ||
agb_tracker_interop = { version = "0.21.1", path = "../agb-tracker-interop", default-features = false } | ||
agb_fixnum = { version = "0.21.1", path = "../../agb-fixnum" } | ||
|
||
xmrs = { version = "0.7.2", features = ["std"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "agb_xm" | ||
version = "0.21.0" | ||
version = "0.21.1" | ||
authors = ["Gwilym Inzani <[email protected]>"] | ||
edition = "2021" | ||
license = "MPL-2.0" | ||
|
@@ -11,8 +11,8 @@ repository = "https://github.com/agbrs/agb" | |
proc-macro = true | ||
|
||
[dependencies] | ||
agb_xm_core = { version = "0.21.0", path = "../agb-xm-core" } | ||
agb_tracker_interop = { version = "0.21.0", path = "../agb-tracker-interop", features = ["quote"] } | ||
agb_xm_core = { version = "0.21.1", path = "../agb-xm-core" } | ||
agb_tracker_interop = { version = "0.21.1", path = "../agb-tracker-interop", features = ["quote"] } | ||
proc-macro-error = "1" | ||
proc-macro2 = "1" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters