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"] }