From 5ea95d9d3d6def5fedd2dd84efd2b3c0dc6a4537 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Feb 2025 17:03:49 +0000 Subject: [PATCH 1/6] Bump libc from 0.2.169 to 0.2.170 Bumps [libc](https://github.com/rust-lang/libc) from 0.2.169 to 0.2.170. - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.170/CHANGELOG.md) - [Commits](https://github.com/rust-lang/libc/compare/0.2.169...0.2.170) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f91fe95..51121b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -247,9 +247,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.169" +version = "0.2.170" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" +checksum = "875b3680cb2f8f71bdcf9a30f38d48282f5d3c95cbf9b3fa57269bb5d5c06828" [[package]] name = "libyml" diff --git a/Cargo.toml b/Cargo.toml index b6ae5bf..4d089eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" # # For clap info, see [dependencies.clap] # For serde info, see [dependencies.serde] -libc = "0.2.169" +libc = "0.2.170" ron = "0.8.1, >=0.8, <0.9" rust-i18n = "3.1.3" -- 2.49.1 From 9ce788613a0150df29fd80c4b7b4f944c1eae334 Mon Sep 17 00:00:00 2001 From: Olivia Brooks <109807080+Cutieguwu@users.noreply.github.com> Date: Wed, 26 Feb 2025 12:05:42 -0500 Subject: [PATCH 2/6] Add version bounds. Maintain support for 0.2.169 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4d089eb..7315558 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" # # For clap info, see [dependencies.clap] # For serde info, see [dependencies.serde] -libc = "0.2.170" +libc = "0.2.170, >=0.2.169, <=170" ron = "0.8.1, >=0.8, <0.9" rust-i18n = "3.1.3" -- 2.49.1 From 288fee10724a3c41a69fcf6e2d166c0205a3c57b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Feb 2025 17:07:31 +0000 Subject: [PATCH 3/6] Bump clap from 4.5.30 to 4.5.31 Bumps [clap](https://github.com/clap-rs/clap) from 4.5.30 to 4.5.31. - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.30...v4.5.31) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51121b2..c658d58 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -71,9 +71,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.30" +version = "4.5.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92b7b18d71fad5313a1e320fa9897994228ce274b60faa4d694fe0ea89cd9e6d" +checksum = "027bb0d98429ae334a8698531da7077bdf906419543a35a55c2cb1b66437d767" dependencies = [ "clap_builder", "clap_derive", @@ -81,9 +81,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.30" +version = "4.5.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a35db2071778a7344791a4fb4f95308b5673d219dee3ae348b86642574ecc90c" +checksum = "5589e0cba072e0f3d23791efac0fd8627b49c829c196a492e88168e6a669d863" dependencies = [ "anstyle", "clap_lex", diff --git a/Cargo.toml b/Cargo.toml index 7315558..1f971de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ ron = "0.8.1, >=0.8, <0.9" rust-i18n = "3.1.3" [dependencies.clap] -version = "4.5.30, >=4.5.27, <=4.5.30" +version = "4.5.31" default-features = false features = [ # From default features collection -- 2.49.1 From d0baf9b7a7bf44567ae192158e92f1cd4055e782 Mon Sep 17 00:00:00 2001 From: Olivia Brooks <109807080+Cutieguwu@users.noreply.github.com> Date: Wed, 26 Feb 2025 14:03:27 -0500 Subject: [PATCH 4/6] Update Cargo.toml Add versioning bounds. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1f971de..3308459 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ ron = "0.8.1, >=0.8, <0.9" rust-i18n = "3.1.3" [dependencies.clap] -version = "4.5.31" +version = "4.5, >=4.5.27, <=4.6" default-features = false features = [ # From default features collection -- 2.49.1 From bb6d2ae94b4a3e0648f3d1bdb24546b2e824da40 Mon Sep 17 00:00:00 2001 From: Olivia Brooks <109807080+Cutieguwu@users.noreply.github.com> Date: Wed, 26 Feb 2025 14:06:30 -0500 Subject: [PATCH 5/6] Libc version bound hotfix. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3308459..7ffe6bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" # # For clap info, see [dependencies.clap] # For serde info, see [dependencies.serde] -libc = "0.2.170, >=0.2.169, <=170" +libc = "0.2.170, >=0.2.169, <=0.2.170" ron = "0.8.1, >=0.8, <0.9" rust-i18n = "3.1.3" -- 2.49.1 From f8a98c37439c5cc064a46e2b03f895aec124569b Mon Sep 17 00:00:00 2001 From: Olivia Brooks <109807080+Cutieguwu@users.noreply.github.com> Date: Wed, 26 Feb 2025 14:10:58 -0500 Subject: [PATCH 6/6] Update Cargo.toml Add additional version bounds for rust-i18n. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7ffe6bb..92fd5b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" # For serde info, see [dependencies.serde] libc = "0.2.170, >=0.2.169, <=0.2.170" ron = "0.8.1, >=0.8, <0.9" -rust-i18n = "3.1.3" +rust-i18n = "3.1.3, >=3.1.3, <3.2" [dependencies.clap] version = "4.5, >=4.5.27, <=4.6" -- 2.49.1