[package]
edition = "2024"
name = "nattydate"
version = "0.2.0"
authors = ["Troy Travlos"]
build = false
exclude = [
"/target",
"/.github",
"/build",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight, deterministic natural language date/time preprocessor — no ML, no clock fragility."
homepage = "https://github.com/troy74/nattydate"
documentation = "https://docs.rs/nattydate"
readme = "README.md"
keywords = [
"date",
"time",
"natural-language",
"parsing",
"nlp",
]
categories = [
"date-and-time",
"text-processing",
"parser-implementations",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/troy74/nattydate"
[lib]
name = "nattydate"
path = "src/lib.rs"
[[bin]]
name = "nattydate"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4.44"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.strsim]
version = "0.11.1"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "symbols"