mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 08:11:33 +11:00
Update to 0.16
This commit is contained in:
parent
a91069eac2
commit
c2e7a3b9b4
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_tracker_interop"
|
name = "agb_tracker_interop"
|
||||||
version = "0.15.0"
|
version = "0.16.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
description = "Library for interop between tracker plugins and agb itself. Designed for use with the agb library for the Game Boy Advance."
|
description = "Library for interop between tracker plugins and agb itself. Designed for use with the agb library for the Game Boy Advance."
|
||||||
|
@ -14,4 +14,4 @@ std = []
|
||||||
[dependencies]
|
[dependencies]
|
||||||
quote = { version = "1", optional = true }
|
quote = { version = "1", optional = true }
|
||||||
proc-macro2 = { version = "1", optional = true }
|
proc-macro2 = { version = "1", optional = true }
|
||||||
agb_fixnum = { version = "0.15.0", path = "../../agb-fixnum" }
|
agb_fixnum = { version = "0.16.0", path = "../../agb-fixnum" }
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_tracker"
|
name = "agb_tracker"
|
||||||
version = "0.15.0"
|
version = "0.16.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
description = "Library for playing tracker music. Designed for use with the agb library for the Game Boy Advance."
|
description = "Library for playing tracker music. Designed for use with the agb library for the Game Boy Advance."
|
||||||
|
@ -11,9 +11,9 @@ default = ["xm"]
|
||||||
xm = ["dep:agb_xm"]
|
xm = ["dep:agb_xm"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
agb_xm = { version = "0.15.0", path = "../agb-xm", optional = true }
|
agb_xm = { version = "0.16.0", path = "../agb-xm", optional = true }
|
||||||
agb = { version = "0.15.0", path = "../../agb" }
|
agb = { version = "0.16.0", path = "../../agb" }
|
||||||
agb_tracker_interop = { version = "0.15.0", path = "../agb-tracker-interop", default-features = false }
|
agb_tracker_interop = { version = "0.16.0", path = "../agb-tracker-interop", default-features = false }
|
||||||
|
|
||||||
[profile.dev]
|
[profile.dev]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_xm_core"
|
name = "agb_xm_core"
|
||||||
version = "0.15.0"
|
version = "0.16.0"
|
||||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
@ -13,7 +13,7 @@ proc-macro2 = "1"
|
||||||
quote = "1"
|
quote = "1"
|
||||||
syn = "2"
|
syn = "2"
|
||||||
|
|
||||||
agb_tracker_interop = { version = "0.15.0", path = "../agb-tracker-interop" }
|
agb_tracker_interop = { version = "0.16.0", path = "../agb-tracker-interop" }
|
||||||
agb_fixnum = { version = "0.15.0", path = "../../agb-fixnum" }
|
agb_fixnum = { version = "0.16.0", path = "../../agb-fixnum" }
|
||||||
|
|
||||||
xmrs = "0.3"
|
xmrs = "0.3"
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "agb_xm"
|
name = "agb_xm"
|
||||||
version = "0.15.0"
|
version = "0.16.0"
|
||||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
agb_xm_core = { version = "0.15.0", path = "../agb-xm-core" }
|
agb_xm_core = { version = "0.16.0", path = "../agb-xm-core" }
|
||||||
proc-macro-error = "1"
|
proc-macro-error = "1"
|
||||||
proc-macro2 = "1"
|
proc-macro2 = "1"
|
||||||
|
|
Loading…
Reference in a new issue