[package]
edition = "2021"
name = "async-mailer"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A set of async generic `Mailer` and object-safe `dyn DynMailer` traits with runtime-pluggable Outlook (Office365) and SMTP implementations."
documentation = "https://docs.rs/async-mailer/"
readme = "README.md"
keywords = [
"async",
"mailer",
"smtp",
"outlook",
]
categories = ["email"]
license = "MPL-2.0"
repository = "https://github.com/LeoniePhiline/async-mailer"
[features]
clap = ["async-mailer-smtp?/clap"]
default = [
"outlook",
"smtp",
"tracing",
]
outlook = ["dep:async-mailer-outlook"]
smtp = ["dep:async-mailer-smtp"]
tracing = [
"async-mailer-core/tracing",
"async-mailer-outlook?/tracing",
"async-mailer-smtp?/tracing",
]
[lib]
name = "async_mailer"
path = "src/lib.rs"
[dependencies.async-mailer-core]
version = "0.5"
[dependencies.async-mailer-outlook]
version = "0.6"
optional = true
[dependencies.async-mailer-smtp]
version = "0.6"
optional = true
[dependencies.secrecy]
version = "0.10"