mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
even less specific
This commit is contained in:
parent
aca82e7007
commit
9d0fa2f40e
|
@ -12,8 +12,8 @@ proc-macro = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] }
|
image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] }
|
||||||
toml = "0.5"
|
toml = "0.5"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
syn = "1.0"
|
syn = "1"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1"
|
||||||
quote = "1.0"
|
quote = "1"
|
||||||
asefile = "0.3.2"
|
asefile = "0.3.2"
|
||||||
|
|
|
@ -10,6 +10,6 @@ description = "Macro for declaring the entry point for a game using the agb libr
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
syn = { version = "1", features = ["full", "extra-traits"] }
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1"
|
||||||
quote = "1.0"
|
quote = "1"
|
||||||
|
|
|
@ -22,6 +22,6 @@ freq18157 = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
hound = "3.4"
|
hound = "3.4"
|
||||||
syn = "1.0"
|
syn = "1"
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1"
|
||||||
quote = "1.0"
|
quote = "1"
|
||||||
|
|
|
@ -19,15 +19,15 @@ default = []
|
||||||
freq18157 = ["agb_sound_converter/freq18157"]
|
freq18157 = ["agb_sound_converter/freq18157"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "1.3"
|
bitflags = "1"
|
||||||
agb_image_converter = { version = "0.6.0", path = "../agb-image-converter" }
|
agb_image_converter = { version = "0.6.0", path = "../agb-image-converter" }
|
||||||
agb_sound_converter = { version = "0.1.0", path = "../agb-sound-converter" }
|
agb_sound_converter = { version = "0.1.0", path = "../agb-sound-converter" }
|
||||||
agb_macros = { version = "0.1.0", path = "../agb-macros" }
|
agb_macros = { version = "0.1.0", path = "../agb-macros" }
|
||||||
agb_fixnum = { version = "0.1.0", path = "../agb-fixnum" }
|
agb_fixnum = { version = "0.1.0", path = "../agb-fixnum" }
|
||||||
bare-metal = "1.0"
|
bare-metal = "1"
|
||||||
hashbrown = "0.12.0"
|
hashbrown = "0.12"
|
||||||
modular-bitfield = "0.11.2"
|
modular-bitfield = "0.11"
|
||||||
rustc-hash = { version = "1.1", default-features = false }
|
rustc-hash = { version = "1", default-features = false }
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
default-target = "thumbv6m-none-eabi"
|
default-target = "thumbv6m-none-eabi"
|
||||||
|
|
|
@ -11,9 +11,9 @@ debug = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
regex = "1"
|
regex = "1"
|
||||||
anyhow = "1.0"
|
anyhow = "1"
|
||||||
image = { version = "0.24.1", default-features = false, features = [ "png", "bmp" ] }
|
image = { version = "0.24", default-features = false, features = [ "png", "bmp" ] }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
cc = { version = "1.0", features = ["parallel"] }
|
cc = { version = "1", features = ["parallel"] }
|
||||||
bindgen = "0.59.2"
|
bindgen = "0.59"
|
Loading…
Reference in a new issue