From 9c9447a9ac20885f0533e4b8ebc9781290197d11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 20 Feb 2025 18:59:14 +0000 Subject: [PATCH 1/2] Bump serde from 1.0.217 to 1.0.218 Bumps [serde](https://github.com/serde-rs/serde) from 1.0.217 to 1.0.218. - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.217...v1.0.218) --- updated-dependencies: - dependency-name: serde 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 bbc3eb5..e06254a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,18 +116,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.217" +version = "1.0.218" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" +checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.217" +version = "1.0.218" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" +checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 7ea04bc..e98c09f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" # For clap info, see [dependencies.clap] libc = "0.2.169" ron = "0.8.1" -serde = { version = "1.0.217", features = ["derive"] } +serde = { version = "1.0.218", features = ["derive"] } [dependencies.clap] version = "4.5.27" -- 2.49.1 From 23fd1c158e6a36f7f2b30416d3a8e9b4c87026c5 Mon Sep 17 00:00:00 2001 From: Olivia Brooks <109807080+Cutieguwu@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:27:29 -0500 Subject: [PATCH 2/2] Update Cargo.toml Employ Tilde requirements due to update strategy employed by serde crate possibly having breaking changes at the patch level. Patch 217 is fully functional without fault. It is also the only version tested at present. Patch 218 just revises documentation, so is functionally identical to patch 217. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e98c09f..a7b166f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" # For clap info, see [dependencies.clap] libc = "0.2.169" ron = "0.8.1" -serde = { version = "1.0.218", features = ["derive"] } +serde = { version = "~1.0.217", features = ["derive"] } [dependencies.clap] version = "4.5.27" -- 2.49.1