2026-02-10 15:31:31 +00:00
|
|
|
[package]
|
|
|
|
|
name = "mailer-bin"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "mailer-bin"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
mailer-core = { path = "../mailer-core" }
|
|
|
|
|
mailer-smtp = { path = "../mailer-smtp" }
|
|
|
|
|
mailer-security = { path = "../mailer-security" }
|
|
|
|
|
tokio.workspace = true
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
serde.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
2026-02-10 15:54:36 +00:00
|
|
|
clap.workspace = true
|
feat(rust): implement mailer-core and mailer-security crates with CLI
Rust migration Phase 1 — implements real functionality in the previously
stubbed mailer-core and mailer-security crates (38 passing tests).
mailer-core: Email/EmailAddress/Attachment types, RFC 5322 MIME builder,
email format validation with scoring, bounce detection (14 types, 40+
regex patterns), DSN status parsing, retry delay calculation.
mailer-security: DKIM signing (RSA-SHA256) and verification, SPF checking,
DMARC verification with public suffix list, DNSBL IP reputation checking
(10 default servers, parallel queries), all powered by mail-auth 0.7.
mailer-bin: Full CLI with validate/bounce/check-ip/verify-email/dkim-sign
subcommands plus --management mode for smartrust JSON-over-stdin/stdout IPC.
2026-02-10 16:06:04 +00:00
|
|
|
hickory-resolver.workspace = true
|
2026-02-10 22:00:44 +00:00
|
|
|
dashmap.workspace = true
|
2026-02-11 07:17:05 +00:00
|
|
|
base64.workspace = true
|
|
|
|
|
uuid.workspace = true
|
2026-02-11 10:11:43 +00:00
|
|
|
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
|