Skip to content

Commit 687849c

Browse files
committed
Auto merge of #1754 - jtgeibel:update/lettre, r=jtgeibel
Update to latest master for lettre and lettre_email This will fix our CI on the beta branch, which is currently failing due to a known breaking inference change. See rust-lang/rust#60958 for more info. I have reviewed the [upstream changes] relative to our current version and see no issues with the changes there (although we could alternatively backport just the needed fix). [upstream changes]: lettre/lettre@v0.9.0...0ead3cd
2 parents 727788d + aee48c1 commit 687849c

File tree

3 files changed

+29
-27
lines changed

3 files changed

+29
-27
lines changed

Cargo.lock

+25-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ parking_lot = "0.7.1"
6363
jemallocator = { version = "0.1.8", features = ['unprefixed_malloc_on_supported_platforms', 'profiling'] }
6464
jemalloc-ctl = "0.2.0"
6565

66-
lettre = "0.9"
67-
lettre_email = "0.9"
66+
lettre = { version = "0.9", git = "https://github.com/lettre/lettre" }
67+
lettre_email = { version = "0.9", git = "https://github.com/lettre/lettre" }
68+
failure = "0.1.1"
6869

6970
conduit = "0.8"
7071
conduit-conditional-get = "0.8"

src/email.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ use std::path::Path;
22

33
use crate::util::{bad_request, CargoResult};
44

5+
use failure::Fail;
56
use lettre::file::FileTransport;
67
use lettre::smtp::authentication::{Credentials, Mechanism};
78
use lettre::smtp::SmtpClient;

0 commit comments

Comments
 (0)