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] 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"