From 162d7f7ea817a4fa51e462e5458da4e0e596174c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 2 Nov 2023 11:47:04 +0000 Subject: [PATCH] build(deps): bump lettre from 0.11.0 to 0.11.1 Bumps [lettre](https://github.com/lettre/lettre) from 0.11.0 to 0.11.1. - [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.11.0...v0.11.1) --- updated-dependencies: - dependency-name: lettre dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- crates/email/Cargo.toml | 2 +- crates/graphql/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e4139ca9..3dd6d88f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2625,9 +2625,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" [[package]] name = "lettre" -version = "0.11.0" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d47084ad58f99c26816d174702f60e873f861fcef3f9bd6075b4ad2dd72d07d5" +checksum = "a466bc111374ccf4d90877dba636924a2185e67e5be4b35d32043199365097b2" dependencies = [ "async-std", "async-trait", diff --git a/crates/email/Cargo.toml b/crates/email/Cargo.toml index bba75fc9..2ebe9bb9 100644 --- a/crates/email/Cargo.toml +++ b/crates/email/Cargo.toml @@ -16,6 +16,6 @@ headers = "0.3.9" mas-templates = { path = "../templates" } [dependencies.lettre] -version = "0.11.0" +version = "0.11.1" default-features = false features = ["tokio1-rustls-tls", "hostname", "builder", "tracing", "pool", "smtp-transport", "sendmail-transport"] diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index adee732c..fb7c59b6 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -12,7 +12,7 @@ anyhow.workspace = true async-graphql = { version = "6.0.9", features = ["chrono", "url"] } async-trait = "0.1.74" chrono.workspace = true -lettre = { version = "0.11.0", default-features = false } +lettre = { version = "0.11.1", default-features = false } serde.workspace = true thiserror.workspace = true tokio = { version = "1.33.0", features = ["sync"] } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index e4442aa0..b5a73b6e 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -33,7 +33,7 @@ axum-extra = { version = "0.8.0", features = ["cookie-private"] } async-graphql = { version = "6.0.9", features = ["tracing", "apollo_tracing"] } # Emails -lettre = { version = "0.11.0", default-features = false, features = ["builder"] } +lettre = { version = "0.11.1", default-features = false, features = ["builder"] } # Database access sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }