Cargo.toml: edition 2024, remove deprecated fields, format with tombi

This commit is contained in:
2026-05-16 10:19:29 +02:00
parent 9cb1bdffec
commit 2441422971
+9 -10
View File
@@ -1,26 +1,25 @@
[package]
name = "logtimes"
version = "1.0.29"
authors = ["Paul Schulze <p.schulze@avm.de>"]
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