2026-02-10 15:31:31 +00:00
|
|
|
[package]
|
|
|
|
|
name = "mailer-smtp"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
mailer-core = { path = "../mailer-core" }
|
2026-02-10 22:00:44 +00:00
|
|
|
mailer-security = { path = "../mailer-security" }
|
2026-02-10 15:31:31 +00:00
|
|
|
tokio.workspace = true
|
|
|
|
|
tokio-rustls.workspace = true
|
2026-02-10 15:54:36 +00:00
|
|
|
hickory-resolver.workspace = true
|
2026-02-10 15:31:31 +00:00
|
|
|
dashmap.workspace = true
|
|
|
|
|
thiserror.workspace = true
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
serde.workspace = true
|
2026-02-11 07:17:05 +00:00
|
|
|
serde_json.workspace = true
|
|
|
|
|
regex.workspace = true
|
|
|
|
|
uuid.workspace = true
|
2026-02-10 22:00:44 +00:00
|
|
|
base64.workspace = true
|
|
|
|
|
rustls-pki-types.workspace = true
|
|
|
|
|
rustls = { version = "0.23", default-features = false, features = ["ring", "logging", "std", "tls12"] }
|
|
|
|
|
rustls-pemfile = "2"
|
2026-02-10 22:26:20 +00:00
|
|
|
mailparse.workspace = true
|
2026-02-11 07:17:05 +00:00
|
|
|
webpki-roots = "0.26"
|
2026-02-11 10:11:43 +00:00
|
|
|
sha2.workspace = true
|
|
|
|
|
hmac.workspace = true
|
|
|
|
|
pbkdf2.workspace = true
|