From b8da19e49f2b7d7faf428580c4ab02882a47252c Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 19 Jan 2023 22:10:40 +0000 Subject: [PATCH] Upgrade async-smtp to v0.6 --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 90f7593ce..489a1a754 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,8 +165,9 @@ dependencies = [ [[package]] name = "async-smtp" -version = "0.5.0" -source = "git+https://github.com/async-email/async-smtp?branch=master#983597125fbb1b0eefd3eb5a21d917af71b2e1c3" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ade89127f9e0d44f9e83cf574d499060005cd45b7dc76be89c0167487fe8edd" dependencies = [ "async-native-tls", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 01a31e28a..31e01a91e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ ansi_term = { version = "0.12.1", optional = true } anyhow = "1" async-imap = { git = "https://github.com/async-email/async-imap", branch = "master", default-features = false, features = ["runtime-tokio"] } async-native-tls = { version = "0.4", default-features = false, features = ["runtime-tokio"] } -async-smtp = { git = "https://github.com/async-email/async-smtp", branch = "master", default-features = false, features = ["smtp-transport", "socks5", "runtime-tokio"] } +async-smtp = { version = "0.6", default-features = false, features = ["smtp-transport", "socks5", "runtime-tokio"] } trust-dns-resolver = "0.22" tokio = { version = "1", features = ["fs", "rt-multi-thread", "macros"] } tokio-tar = { version = "0.3" } # TODO: integrate tokio into async-tar