mailidator 0.1.0

A lightweight Rust library for checking email address misspellings
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"
name = "mailidator"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight Rust library for checking email address misspellings"
readme = "README.md"
keywords = [
    "email",
    "spell-check",
    "validation",
    "typo",
    "correction",
]
categories = [
    "text-processing",
    "web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/yourusername/mailidator"

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

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

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

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

[dev-dependencies]