email-extract 0.1.0

Intelligent email parsing with structured type extraction
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.90.0"
name = "email-extract"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Intelligent email parsing with structured type extraction"
documentation = "https://docs.rs/email-extract"
readme = "README.md"
keywords = [
    "email",
    "parser",
    "extraction",
    "mime",
    "rfc5322",
]
categories = [
    "email",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/LeakIX/email-extract"

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

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

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

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

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.mailparse]
version = "0.16"

[dependencies.regex]
version = "1.11"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1.40"

[dev-dependencies.tokio-test]
version = "0.4"

[lints.clippy]
all = "deny"
nursery = "deny"
pedantic = "deny"

[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1

[lints.clippy.missing_panics_doc]
level = "allow"
priority = 1