Disable unused async-smtp transports

By default file and sendmail transports are enabled,
but deltachat does not use them.
This commit is contained in:
link2xt
2022-04-09 11:36:32 +00:00
parent 494a7f1db9
commit 26c38070ec
2 changed files with 1 additions and 4 deletions

3
Cargo.lock generated
View File

@@ -310,9 +310,6 @@ dependencies = [
"nom 5.1.2",
"pin-project",
"pin-utils",
"serde",
"serde_derive",
"serde_json",
"thiserror",
]

View File

@@ -19,7 +19,7 @@ ansi_term = { version = "0.12.1", optional = true }
anyhow = "1"
async-imap = { git = "https://github.com/async-email/async-imap" }
async-native-tls = { version = "0.3" }
async-smtp = { git = "https://github.com/async-email/async-smtp", branch="master", features = ["socks5"] }
async-smtp = { git = "https://github.com/async-email/async-smtp", branch="master", default-features=false, features = ["smtp-transport", "socks5"] }
async-std-resolver = "0.21"
async-std = { version = "1" }
async-tar = { version = "0.4", default-features=false }