mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-24 00:31:34 +11:00
Merge pull request #188 from corwinkuiper/crate-version-numbers
be less specific in version numbers
This commit is contained in:
commit
82922abddb
|
@ -11,9 +11,9 @@ proc-macro = true
|
|||
|
||||
[dependencies]
|
||||
image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] }
|
||||
toml = "0.5.8"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
syn = "1.0.88"
|
||||
proc-macro2 = "1.0.36"
|
||||
quote = "1.0.15"
|
||||
toml = "0.5"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
syn = "1"
|
||||
proc-macro2 = "1"
|
||||
quote = "1"
|
||||
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
|
||||
|
||||
[dependencies]
|
||||
syn = { version = "1.0.88", features = ["full", "extra-traits"] }
|
||||
proc-macro2 = "1.0.36"
|
||||
quote = "1.0.15"
|
||||
syn = { version = "1", features = ["full", "extra-traits"] }
|
||||
proc-macro2 = "1"
|
||||
quote = "1"
|
||||
|
|
|
@ -21,7 +21,7 @@ proc-macro = true
|
|||
freq18157 = []
|
||||
|
||||
[dependencies]
|
||||
hound = "3.4.0"
|
||||
syn = "1.0.88"
|
||||
proc-macro2 = "1.0.36"
|
||||
quote = "1.0.15"
|
||||
hound = "3.4"
|
||||
syn = "1"
|
||||
proc-macro2 = "1"
|
||||
quote = "1"
|
||||
|
|
|
@ -19,15 +19,15 @@ default = []
|
|||
freq18157 = ["agb_sound_converter/freq18157"]
|
||||
|
||||
[dependencies]
|
||||
bitflags = "1.3"
|
||||
bitflags = "1"
|
||||
agb_image_converter = { version = "0.6.0", path = "../agb-image-converter" }
|
||||
agb_sound_converter = { version = "0.1.0", path = "../agb-sound-converter" }
|
||||
agb_macros = { version = "0.1.0", path = "../agb-macros" }
|
||||
agb_fixnum = { version = "0.1.0", path = "../agb-fixnum" }
|
||||
bare-metal = "1.0"
|
||||
hashbrown = "0.12.0"
|
||||
modular-bitfield = "0.11.2"
|
||||
rustc-hash = { version = "1.1", default-features = false }
|
||||
bare-metal = "1"
|
||||
hashbrown = "0.12"
|
||||
modular-bitfield = "0.11"
|
||||
rustc-hash = { version = "1", default-features = false }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
default-target = "thumbv6m-none-eabi"
|
||||
|
|
|
@ -11,9 +11,9 @@ debug = true
|
|||
|
||||
[dependencies]
|
||||
regex = "1"
|
||||
anyhow = "1.0"
|
||||
image = { version = "0.24.1", default-features = false, features = [ "png", "bmp" ] }
|
||||
anyhow = "1"
|
||||
image = { version = "0.24", default-features = false, features = [ "png", "bmp" ] }
|
||||
|
||||
[build-dependencies]
|
||||
cc = { version = "1.0", features = ["parallel"] }
|
||||
bindgen = "0.59.2"
|
||||
cc = { version = "1", features = ["parallel"] }
|
||||
bindgen = "0.59"
|
Loading…
Reference in a new issue