[workspace] [package] name = "async-mailer" description = "A set of async generic `Mailer` and object-safe `dyn DynMailer` traits with runtime-pluggable Outlook (Office365) and SMTP implementations." categories = ["email"] keywords = ["async", "mailer", "smtp", "outlook"] license = "MPL-2.0" repository = "https://github.com/LeoniePhiline/async-mailer" documentation = "https://docs.rs/async-mailer/" version = "0.5.0" edition = "2021" [features] default = ["outlook", "smtp", "tracing"] outlook = ["dep:async-mailer-outlook"] smtp = ["dep:async-mailer-smtp"] clap = ["async-mailer-smtp?/clap"] tracing = ["async-mailer-core/tracing", "async-mailer-outlook?/tracing", "async-mailer-smtp?/tracing"] [dependencies] async-mailer-core = { path = "core", version = "0.3" } async-mailer-outlook = { optional = true, path = "outlook", version = "0.4" } async-mailer-smtp = { optional = true, path = "smtp", version = "0.4" } secrecy = "0.10.0"