2026-02-10 15:31:31 +00:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = [
|
|
|
|
|
"crates/mailer-core",
|
|
|
|
|
"crates/mailer-smtp",
|
|
|
|
|
"crates/mailer-security",
|
|
|
|
|
"crates/mailer-bin",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
|
tokio-rustls = "0.26"
|
2026-02-10 15:54:09 +00:00
|
|
|
hickory-resolver = "0.25"
|
|
|
|
|
mail-auth = "0.7"
|
|
|
|
|
mailparse = "0.16"
|
2026-02-10 15:31:31 +00:00
|
|
|
dashmap = "6"
|
|
|
|
|
thiserror = "2"
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
2026-02-10 15:54:09 +00:00
|
|
|
regex = "1"
|
|
|
|
|
base64 = "0.22"
|
|
|
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
|
rustls-pki-types = "1"
|
|
|
|
|
psl = "2"
|
|
|
|
|
clap = { version = "4", features = ["derive"] }
|