From be3662d7dc35145a53e6fb5b4b5ae339caa28dba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jun 2022 19:39:13 +0000 Subject: [PATCH] Bump lettre from 0.10.0-rc.7 to 0.10.0 Bumps [lettre](https://github.com/lettre/lettre) from 0.10.0-rc.7 to 0.10.0. - [Release notes](https://github.com/lettre/lettre/releases) - [Changelog](https://github.com/lettre/lettre/blob/master/CHANGELOG.md) - [Commits](https://github.com/lettre/lettre/compare/v0.10.0-rc.7...v0.10.0) --- updated-dependencies: - dependency-name: lettre dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/config/Cargo.toml | 2 +- crates/email/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d84e07b..44c66e75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2181,9 +2181,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" [[package]] name = "lettre" -version = "0.10.0-rc.7" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f7e87d9d44162eea7abd87b1a7540fcb10d5e58e8bb4f173178f3dc6e453944" +checksum = "5677c78c7c7ede1dd68e8a7078012bc625449fb304e7b509b917eaaedfe6e849" dependencies = [ "async-trait", "base64", diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 9f26a92b..92e823af 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -22,7 +22,7 @@ serde = { version = "1.0.137", features = ["derive"] } serde_with = { version = "1.14.0", features = ["hex", "chrono"] } serde_json = "1.0.82" sqlx = { version = "0.6.0", features = ["runtime-tokio-rustls", "postgres"] } -lettre = { version = "0.10.0-rc.7", default-features = false, features = ["serde", "builder"] } +lettre = { version = "0.10.0", default-features = false, features = ["serde", "builder"] } rand = "0.8.5" rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" } diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index ec50490f..2bf95fbe 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -18,6 +18,6 @@ mas-templates = { path = "../templates" } mas-config = { path = "../config" } [dependencies.lettre] -version = "0.10.0-rc.7" +version = "0.10.0" default-features = false features = ["tokio1-rustls-tls", "hostname", "builder", "tracing", "pool", "smtp-transport", "sendmail-transport"] diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 0be31829..39b5788f 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -25,7 +25,7 @@ axum-macros = "0.2.3" axum-extra = { version = "0.3.5", features = ["cookie-private"] } # Emails -lettre = { version = "0.10.0-rc.7", default-features = false, features = ["builder"] } +lettre = { version = "0.10.0", default-features = false, features = ["builder"] } # Database access sqlx = { version = "0.6.0", features = ["runtime-tokio-rustls", "postgres"] }