direct_to_mx 0.3.0

Direct-to-MX email delivery with DKIM signing, IPv4 forcing, MX fallback, bulk sending, attachments, DKIM key generation, and DNS verification
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 = "direct_to_mx"
version = "0.3.0"
authors = ["Sriram G <marirs@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Direct-to-MX email delivery with DKIM signing, IPv4 forcing, MX fallback, bulk sending, attachments, DKIM key generation, and DNS verification"
homepage = "https://github.com/marirs/direct-to-mx"
documentation = "https://docs.rs/direct_to_mx"
readme = "README.md"
keywords = [
    "email",
    "smtp",
    "dkim",
    "mx",
    "deliverability",
]
categories = [
    "email",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/marirs/direct-to-mx"

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

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

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"

[dependencies.hex]
version = "0.4"

[dependencies.hickory-resolver]
version = "0.24"
features = ["tokio-runtime"]

[dependencies.lettre]
version = "0.11"
features = [
    "builder",
    "smtp-transport",
    "tokio1",
    "tokio1-rustls-tls",
]
default-features = false

[dependencies.mail-auth]
version = "0.4"
features = ["rust-crypto"]
default-features = false

[dependencies.rand]
version = "0.8"

[dependencies.rsa]
version = "0.9"
features = ["pem"]

[dependencies.sha2]
version = "0.10"
features = ["oid"]

[dependencies.tokio]
version = "1"
features = ["sync"]

[dev-dependencies.mail-auth]
version = "0.4"
features = [
    "rust-crypto",
    "test",
]
default-features = false

[dev-dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
]