From aca82e7007772920a01fe0ae339282be5e1c83ed Mon Sep 17 00:00:00 2001 From: Corwin Date: Mon, 14 Mar 2022 20:28:11 +0000 Subject: [PATCH 1/2] be less specific in version numbers --- agb-image-converter/Cargo.toml | 8 ++++---- agb-macros/Cargo.toml | 6 +++--- agb-sound-converter/Cargo.toml | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/agb-image-converter/Cargo.toml b/agb-image-converter/Cargo.toml index 107d526f..841ff776 100644 --- a/agb-image-converter/Cargo.toml +++ b/agb-image-converter/Cargo.toml @@ -11,9 +11,9 @@ proc-macro = true [dependencies] image = { version = "0.23", default-features = false, features = [ "png", "bmp" ] } -toml = "0.5.8" +toml = "0.5" serde = { version = "1.0", features = ["derive"] } -syn = "1.0.88" -proc-macro2 = "1.0.36" -quote = "1.0.15" +syn = "1.0" +proc-macro2 = "1.0" +quote = "1.0" asefile = "0.3.2" diff --git a/agb-macros/Cargo.toml b/agb-macros/Cargo.toml index 1bae136b..8423c94a 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.88", features = ["full", "extra-traits"] } -proc-macro2 = "1.0.36" -quote = "1.0.15" +syn = { version = "1.0", features = ["full", "extra-traits"] } +proc-macro2 = "1.0" +quote = "1.0" diff --git a/agb-sound-converter/Cargo.toml b/agb-sound-converter/Cargo.toml index be25a0c3..dfb69687 100644 --- a/agb-sound-converter/Cargo.toml +++ b/agb-sound-converter/Cargo.toml @@ -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" \ No newline at end of file +hound = "3.4" +syn = "1.0" +proc-macro2 = "1.0" +quote = "1.0" From 9d0fa2f40e4541ed485f36276b74dbd69cc39955 Mon Sep 17 00:00:00 2001 From: Corwin Date: Mon, 14 Mar 2022 20:34:02 +0000 Subject: [PATCH 2/2] even less specific --- agb-image-converter/Cargo.toml | 8 ++++---- agb-macros/Cargo.toml | 6 +++--- agb-sound-converter/Cargo.toml | 6 +++--- agb/Cargo.toml | 10 +++++----- mgba-test-runner/Cargo.toml | 8 ++++---- 5 files changed, 19 insertions(+), 19 deletions(-) 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