Skip to content

Commit

Permalink
Update to latest master for lettre and lettre_email
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jtgeibel committed May 29, 2019
1 parent 727788d commit aee48c1
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 27 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ parking_lot = "0.7.1"
jemallocator = { version = "0.1.8", features = ['unprefixed_malloc_on_supported_platforms', 'profiling'] }
jemalloc-ctl = "0.2.0"

lettre = "0.9"
lettre_email = "0.9"
lettre = { version = "0.9", git = "https://github.com/lettre/lettre" }
lettre_email = { version = "0.9", git = "https://github.com/lettre/lettre" }
failure = "0.1.1"

conduit = "0.8"
conduit-conditional-get = "0.8"
Expand Down
1 change: 1 addition & 0 deletions src/email.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use std::path::Path;

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

use failure::Fail;
use lettre::file::FileTransport;
use lettre::smtp::authentication::{Credentials, Mechanism};
use lettre::smtp::SmtpClient;
Expand Down

0 comments on commit aee48c1

Please sign in to comment.