diff --git a/agb-image-converter/Cargo.toml b/agb-image-converter/Cargo.toml index 841ff776..7ac21251 100644 --- a/agb-image-converter/Cargo.toml +++ b/agb-image-converter/Cargo.toml @@ -12,8 +12,8 @@ proc-macro = true [dependencies] image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] } toml = "0.5" -serde = { version = "1.0", features = ["derive"] } -syn = "1.0" -proc-macro2 = "1.0" -quote = "1.0" +serde = { version = "1", features = ["derive"] } +syn = "1" +proc-macro2 = "1" +quote = "1" asefile = "0.3.2" diff --git a/agb-macros/Cargo.toml b/agb-macros/Cargo.toml index 8423c94a..c08a2b61 100644 --- a/agb-macros/Cargo.toml +++ b/agb-macros/Cargo.toml @@ -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", features = ["full", "extra-traits"] } -proc-macro2 = "1.0" -quote = "1.0" +syn = { version = "1", features = ["full", "extra-traits"] } +proc-macro2 = "1" +quote = "1" diff --git a/agb-sound-converter/Cargo.toml b/agb-sound-converter/Cargo.toml index dfb69687..34a41077 100644 --- a/agb-sound-converter/Cargo.toml +++ b/agb-sound-converter/Cargo.toml @@ -22,6 +22,6 @@ freq18157 = [] [dependencies] hound = "3.4" -syn = "1.0" -proc-macro2 = "1.0" -quote = "1.0" +syn = "1" +proc-macro2 = "1" +quote = "1" diff --git a/agb/Cargo.toml b/agb/Cargo.toml index dc34e53a..feae8f6b 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -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" diff --git a/mgba-test-runner/Cargo.toml b/mgba-test-runner/Cargo.toml index ade7a2c2..dc77f24d 100644 --- a/mgba-test-runner/Cargo.toml +++ b/mgba-test-runner/Cargo.toml @@ -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" \ No newline at end of file +cc = { version = "1", features = ["parallel"] } +bindgen = "0.59" \ No newline at end of file