From 95d6b4af163520ee520f300446165f93c0236516 Mon Sep 17 00:00:00 2001 From: Paul Schulze Date: Sat, 16 May 2026 10:31:39 +0200 Subject: [PATCH] Cargo.toml: simplify chrono dep --- Cargo.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index adb3350..ed960c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,10 +3,8 @@ name = "logtimes" version = "1.0.29" edition = "2024" -[dependencies.chrono] -version = "0.4" -default-features = false -features = ["clock", "std"] +[dependencies] +chrono = { version = "0.4", default-features = false, features = ["clock"] } [lints.clippy] inline_always = "allow"