[package]
edition = "2024"
rust-version = "1.94"
name = "cletter"
version = "0.2.2"
build = false
include = [
"Cargo.toml",
"Cargo.lock",
"src/**",
"tables/**",
"tests/**",
"README.md",
"CHANGELOG.md",
"LICENSE",
"LICENSE.md",
"LICENSES/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Locale-correct business correspondence: composes cgreet, cfarewell, cink and cdate with locale tables for opening, subject, resolution and orthography"
documentation = "https://docs.rs/cletter"
readme = "README.md"
keywords = [
"i18n",
"correspondence",
"locale",
]
categories = [
"internationalization",
"text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/corbet-labs/cletter"
[lib]
name = "cletter"
path = "src/lib.rs"
[dependencies.cdate]
version = "0.2.1"
[dependencies.cfarewell]
version = "0.2.1"
[dependencies.cgreet]
version = "0.2.1"
[dependencies.cink]
version = "0.1.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"