Update async-smtp

New version supports @yggmail addresses.
This commit is contained in:
link2xt
2021-07-24 03:42:18 +03:00
parent 0691aa3d2c
commit 532060d8b7
2 changed files with 5 additions and 6 deletions

9
Cargo.lock generated
View File

@@ -323,19 +323,18 @@ dependencies = [
[[package]] [[package]]
name = "async-smtp" name = "async-smtp"
version = "0.3.4" version = "0.4.0"
source = "git+https://github.com/async-email/async-smtp?rev=2275fd8d13e39b2c58d6605c786ff06ff9e05708#2275fd8d13e39b2c58d6605c786ff06ff9e05708" source = "git+https://github.com/async-email/async-smtp?rev=c8800625f7cf29f437143ac7e720ac2730a0962f#c8800625f7cf29f437143ac7e720ac2730a0962f"
dependencies = [ dependencies = [
"async-native-tls", "async-native-tls",
"async-std", "async-std",
"async-trait", "async-trait",
"base64 0.12.3", "base64 0.13.0",
"bufstream", "bufstream",
"fast_chemail",
"hostname 0.1.5", "hostname 0.1.5",
"log", "log",
"nom 5.1.2", "nom 5.1.2",
"pin-project 0.4.27", "pin-project 1.0.5",
"pin-utils", "pin-utils",
"serde", "serde",
"serde_derive", "serde_derive",

View File

@@ -18,7 +18,7 @@ ansi_term = { version = "0.12.1", optional = true }
anyhow = "1.0.42" anyhow = "1.0.42"
async-imap = "0.5.0" async-imap = "0.5.0"
async-native-tls = { version = "0.3.3" } async-native-tls = { version = "0.3.3" }
async-smtp = { git = "https://github.com/async-email/async-smtp", rev="2275fd8d13e39b2c58d6605c786ff06ff9e05708" } async-smtp = { git = "https://github.com/async-email/async-smtp", rev="c8800625f7cf29f437143ac7e720ac2730a0962f" }
async-std-resolver = "0.20.3" async-std-resolver = "0.20.3"
async-std = { version = "~1.9.0", features = ["unstable"] } async-std = { version = "~1.9.0", features = ["unstable"] }
async-tar = "0.3.0" async-tar = "0.3.0"