[package]
edition = "2024"
name = "mailrs-clean"
version = "1.0.3"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Email content cleanup primitives: HTML sanitization, tracking-pixel detection, bulk/automated sender heuristics, quoted-reply splitting — zero I/O, no async runtime."
homepage = "https://github.com/goliajp/mailrs"
documentation = "https://docs.rs/mailrs-clean"
readme = "README.md"
keywords = [
"email",
"html",
"sanitize",
"tracking",
"quoted",
]
categories = [
"email",
"text-processing",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/mailrs"
resolver = "2"
[lib]
name = "mailrs_clean"
path = "src/lib.rs"
[[test]]
name = "perf_gate"
path = "tests/perf_gate.rs"
[[bench]]
name = "clean"
path = "benches/clean.rs"
harness = false
[dependencies.html2text]
version = "0.17"
[dev-dependencies.criterion]
version = "0.8"
features = ["cargo_bench_support"]
default-features = false
[lints.clippy.all]
level = "deny"
priority = 0
[lints.rust]
warnings = "deny"