From ae517887d61c8273c2ee1acf459bdeaf81aefd9f Mon Sep 17 00:00:00 2001 From: Smyile <84925446+davidetacchini@users.noreply.github.com> Date: Thu, 16 Apr 2026 11:50:32 +0200 Subject: [PATCH 1/2] chore: bump version to 0.2.2 --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 449b87d..1ff505e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ ] [workspace.package] -version = "0.2.1" +version = "0.2.2" edition = "2024" license = "MIT OR Apache-2.0" repository = "https://github.com/rustmailapp/rustmail" @@ -39,10 +39,10 @@ mime_guess = "2.0" time = { version = "0.3", features = ["formatting", "macros"] } dirs = "6.0" -rustmail-smtp = { path = "crates/rustmail-smtp", version = "0.2.1" } -rustmail-storage = { path = "crates/rustmail-storage", version = "0.2.1" } -rustmail-api = { path = "crates/rustmail-api", version = "0.2.1" } -rustmail-tui = { path = "crates/rustmail-tui", version = "0.2.1" } +rustmail-smtp = { path = "crates/rustmail-smtp", version = "0.2.2" } +rustmail-storage = { path = "crates/rustmail-storage", version = "0.2.2" } +rustmail-api = { path = "crates/rustmail-api", version = "0.2.2" } +rustmail-tui = { path = "crates/rustmail-tui", version = "0.2.2" } [workspace.metadata.release] shared-version = "workspace" From 108423125780646a9a382e1bf4961baf9ba84b42 Mon Sep 17 00:00:00 2001 From: Smyile <84925446+davidetacchini@users.noreply.github.com> Date: Thu, 16 Apr 2026 11:51:48 +0200 Subject: [PATCH 2/2] chore: update rustls-webpki and ignore rand advisory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update rustls-webpki 0.103.10 → 0.103.12 (fixes RUSTSEC-2026-0098, RUSTSEC-2026-0099) - Ignore RUSTSEC-2026-0097 (rand unsound with custom logger — transitive dep, not applicable) --- Cargo.lock | 14 +++++++------- audit.toml | 1 + 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a41adf1..07dc02e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2369,9 +2369,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.103.10" +version = "0.103.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef" +checksum = "8279bb85272c9f10811ae6a6c547ff594d6a7f3c6c6b02ee9726d1d0dcfcdd06" dependencies = [ "ring", "rustls-pki-types", @@ -2380,7 +2380,7 @@ dependencies = [ [[package]] name = "rustmail-api" -version = "0.2.1" +version = "0.2.2" dependencies = [ "axum", "lettre", @@ -2400,7 +2400,7 @@ dependencies = [ [[package]] name = "rustmail-server" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "axum", @@ -2426,7 +2426,7 @@ dependencies = [ [[package]] name = "rustmail-smtp" -version = "0.2.1" +version = "0.2.2" dependencies = [ "mail-parser", "serde", @@ -2438,7 +2438,7 @@ dependencies = [ [[package]] name = "rustmail-storage" -version = "0.2.1" +version = "0.2.2" dependencies = [ "mail-parser", "serde", @@ -2453,7 +2453,7 @@ dependencies = [ [[package]] name = "rustmail-tui" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "crossterm", diff --git a/audit.toml b/audit.toml index cf6dec0..996c337 100644 --- a/audit.toml +++ b/audit.toml @@ -2,4 +2,5 @@ ignore = [ "RUSTSEC-2024-0436", # paste: unmaintained — transitive dep of ratatui "RUSTSEC-2026-0002", # lru: unsound IterMut — transitive dep of ratatui + "RUSTSEC-2026-0097", # rand: unsound with custom logger — transitive dep, not applicable ]