From 44973f0fb7b790adfc5f2eec2e46867e0ef261c1 Mon Sep 17 00:00:00 2001 From: "Neal H. Walfield" Date: Thu, 4 Jul 2024 22:42:19 +0200 Subject: [PATCH] Upgrade chrono. - Change the minimum supported version of `chrono` to 0.4.38. - This is the version in Debian testing. - Upgrading allows us to remove the use of some deprecated functions. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0d97a316..f9104474 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ anyhow = "1.0.18" buffered-reader = { version = "1.0.0", default-features = false, features = ["compression"] } clap = { version = "4", features = ["derive", "env", "string", "wrap_help"] } clap_complete = "4" -chrono = "0.4.10" +chrono = "0.4.38" dirs = "5" roff = "0.2.1" serde = { version = "1.0.137", features = ["derive"] }