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]
|
||||
name = "agb_tracker_interop"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
edition = "2021"
|
||||
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."
|
||||
|
@ -14,4 +14,4 @@ std = []
|
|||
[dependencies]
|
||||
quote = { 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]
|
||||
name = "agb_tracker"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
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"]
|
||||
|
||||
[dependencies]
|
||||
agb_xm = { version = "0.15.0", path = "../agb-xm", optional = true }
|
||||
agb = { version = "0.15.0", path = "../../agb" }
|
||||
agb_tracker_interop = { version = "0.15.0", path = "../agb-tracker-interop", default-features = false }
|
||||
agb_xm = { version = "0.16.0", path = "../agb-xm", optional = true }
|
||||
agb = { version = "0.16.0", path = "../../agb" }
|
||||
agb_tracker_interop = { version = "0.16.0", path = "../agb-tracker-interop", default-features = false }
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 3
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "agb_xm_core"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
|
@ -13,7 +13,7 @@ proc-macro2 = "1"
|
|||
quote = "1"
|
||||
syn = "2"
|
||||
|
||||
agb_tracker_interop = { version = "0.15.0", path = "../agb-tracker-interop" }
|
||||
agb_fixnum = { version = "0.15.0", path = "../../agb-fixnum" }
|
||||
agb_tracker_interop = { version = "0.16.0", path = "../agb-tracker-interop" }
|
||||
agb_fixnum = { version = "0.16.0", path = "../../agb-fixnum" }
|
||||
|
||||
xmrs = "0.3"
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "agb_xm"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
authors = ["Gwilym Kuiper <gw@ilym.me>"]
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
|
@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
|
|||
proc-macro = true
|
||||
|
||||
[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-macro2 = "1"
|
||||
|
|
Loading…
Reference in a new issue