-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (22 loc) · 943 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[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"