From 532060d8b7be28715bfc1a1b182454f321f35031 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 24 Jul 2021 03:42:18 +0300 Subject: [PATCH] Update async-smtp New version supports @yggmail addresses. --- Cargo.lock | 9 ++++----- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 40ee93c2c..8336588b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,19 +323,18 @@ dependencies = [ [[package]] name = "async-smtp" -version = "0.3.4" -source = "git+https://github.com/async-email/async-smtp?rev=2275fd8d13e39b2c58d6605c786ff06ff9e05708#2275fd8d13e39b2c58d6605c786ff06ff9e05708" +version = "0.4.0" +source = "git+https://github.com/async-email/async-smtp?rev=c8800625f7cf29f437143ac7e720ac2730a0962f#c8800625f7cf29f437143ac7e720ac2730a0962f" dependencies = [ "async-native-tls", "async-std", "async-trait", - "base64 0.12.3", + "base64 0.13.0", "bufstream", - "fast_chemail", "hostname 0.1.5", "log", "nom 5.1.2", - "pin-project 0.4.27", + "pin-project 1.0.5", "pin-utils", "serde", "serde_derive", diff --git a/Cargo.toml b/Cargo.toml index cc9c78758..60ea43749 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ ansi_term = { version = "0.12.1", optional = true } anyhow = "1.0.42" async-imap = "0.5.0" 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 = { version = "~1.9.0", features = ["unstable"] } async-tar = "0.3.0"