ci: update Rust to 1.95.0

This commit is contained in:
link2xt
2026-04-16 18:27:21 +02:00
committed by l
parent b8cfee7e9e
commit 7daa6cc8d9
14 changed files with 4 additions and 27 deletions

View File

@@ -24,7 +24,6 @@ pub struct PlainText {
impl PlainText {
/// Convert plain text to HTML.
/// The function handles quotes, links, fixed and floating text paragraphs.
#[expect(clippy::arithmetic_side_effects)]
pub fn to_html(&self) -> String {
static LINKIFY_MAIL_RE: LazyLock<regex::Regex> =
LazyLock::new(|| regex::Regex::new(r"\b([\w.\-+]+@[\w.\-]+)\b").unwrap());