[package]
edition = "2021"
rust-version = "1.82"
name = "edtf-normalize"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic English prose-date to EDTF normalizer: '1980s' -> 198X, 'circa 1920' -> 1920~. Honest ambiguity, no silent guesses. no_std, zero dependencies."
readme = "README.md"
keywords = [
"edtf",
"date",
"iso8601",
"natural-language",
"no-std",
]
categories = [
"date-and-time",
"parser-implementations",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/CarlAllenn/edtf"
[lib]
name = "edtf_normalize"
path = "src/lib.rs"
[[test]]
name = "oracle"
path = "tests/oracle.rs"
[[test]]
name = "props"
path = "tests/props.rs"
[[test]]
name = "traps"
path = "tests/traps.rs"
[[test]]
name = "traps_ru"
path = "tests/traps_ru.rs"
[dependencies.edtf-core]
version = "0.2.0"
[dev-dependencies.proptest]
version = "=1.11.0"
features = ["std"]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"