From e5a2da48599f2b0e5e4b8d4623fcbb8a22b21e56 Mon Sep 17 00:00:00 2001 From: Greg Lamberson Date: Sun, 19 Apr 2026 13:56:31 -0500 Subject: [PATCH] Bump toml from 0.8 to 0.9 The two call sites in lib/examples/time.rs (both using toml::from_str) are stable across the 0.8 to 0.9 transition. No source changes required. Verified: cargo build cargo test Pre-existing clippy errors (2) and cargo fmt noise on master are reproducible before this change and unrelated. --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 286a605..f58efa3 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -18,7 +18,7 @@ struct-patch-derive = { version = "=0.10.5", path = "../derive" } serde_json = "1.0" serde = { version = "1", features = ["derive"] } serde_with = "3.9.0" -toml = "0.8.19" +toml = "0.9" humantime-serde = "1.1.1" clap = { version = "4.4.7", features = ["derive"] }