[package]
edition = "2024"
rust-version = "1.88"
name = "dates-le"
version = "0.1.0"
authors = ["Nolin D Naidoo"]
build = false
exclude = [
"AGENTS.md",
"CLAUDE.md",
"rust-toolchain.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Find every date and timestamp in a codebase, and the instant each one resolves to"
homepage = "https://letools.dev/tools/dates-le"
readme = "README.md"
keywords = [
"dates",
"timestamp",
"iso8601",
"audit",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
"text-processing",
]
license = "MIT"
repository = "https://github.com/nolindnaidoo/dates-le"
[lib]
name = "dates_le"
path = "src/lib.rs"
[[bin]]
name = "dates-le"
path = "src/main.rs"
[[test]]
name = "corpus"
path = "tests/corpus.rs"
[[test]]
name = "scenarios"
path = "tests/scenarios.rs"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
]
default-features = false
[dependencies.chrono-tz]
version = "0.10"
[dependencies.fancy-regex]
version = "0.14"
[dependencies.ignore]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_sign_loss = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.release]
lto = true
codegen-units = 1
strip = true