logtimes/Cargo.toml

27 lines
424 B
TOML
Raw Permalink Normal View History

2020-07-30 10:15:18 +02:00
[package]
name = "logtimes"
2024-08-14 15:25:14 +02:00
version = "1.0.10"
2020-07-30 10:15:18 +02:00
authors = ["Paul Schulze <p.schulze@avm.de>"]
edition = "2021"
2020-07-30 10:15:18 +02:00
[dependencies.chrono]
version = "0.4"
default-features = false
features = ["std", "clock"]
2020-07-30 10:15:18 +02:00
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = "warn"
todo = "warn"
unwrap_used = "warn"
inline_always = "allow"
2020-07-30 10:15:18 +02:00
[profile.release]
lto = true
debug = false
strip = true
panic = "unwind"
codegen-units = 1