structured-email-address 0.0.1

RFC 5321/5322/6531 email address parser, validator, and normalizer. Subaddress extraction, provider-aware normalization, PSL domain validation, anti-homoglyph protection.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "structured-email-address"
version = "0.0.1"
authors = ["Structured World Foundation <foundation@sw.foundation>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 5321/5322/6531 email address parser, validator, and normalizer. Subaddress extraction, provider-aware normalization, PSL domain validation, anti-homoglyph protection."
documentation = "https://docs.rs/structured-email-address/"
readme = "README.md"
keywords = [
    "email",
    "email-address",
    "validation",
    "rfc-5322",
    "normalization",
]
categories = [
    "parser-implementations",
    "text-processing",
]
license = "MIT"
repository = "https://github.com/structured-world/structured-email-address"

[features]
default = [
    "serde",
    "psl",
]
psl = ["dep:psl"]
serde = ["dep:serde"]

[lib]
name = "structured_email_address"
path = "src/lib.rs"

[dependencies.idna]
version = "1.1"

[dependencies.psl]
version = "2"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dependencies.unicode-normalization]
version = "0.1"

[dependencies.unicode-security]
version = "0.1"

[dev-dependencies.serde_json]
version = "1"

[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"