From 2441422971c9ec690c47d447cbe99a9f1b15cd41 Mon Sep 17 00:00:00 2001
From: Paul Schulze
Date: Sat, 16 May 2026 10:19:29 +0200
Subject: [PATCH] Cargo.toml: edition 2024, remove deprecated fields, format
with tombi
---
Cargo.toml | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 4d900a7..adb3350 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,26 +1,25 @@
[package]
name = "logtimes"
version = "1.0.29"
-authors = ["Paul Schulze "]
-edition = "2021"
+edition = "2024"
[dependencies.chrono]
version = "0.4"
default-features = false
-features = ["std", "clock"]
+features = ["clock", "std"]
+
+[lints.clippy]
+inline_always = "allow"
+pedantic = { level = "warn", priority = -1 }
+todo = "warn"
+unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"
-[lints.clippy]
-pedantic = { level = "warn", priority = -1 }
-todo = "warn"
-unwrap_used = "warn"
-inline_always = "allow"
-
[profile.release]
-lto = true
debug = false
strip = true
+lto = true
panic = "unwind"
codegen-units = 1