From 4a93c888f18c74235cf75ff5f9cfbefe6eefff96 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 29 May 2026 11:07:01 +0000 Subject: [PATCH] fix(deps): update all non-major dependencies --- Cargo.toml | 18 +++++++++--------- Dockerfile | 2 +- rust-toolchain.toml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 974ec4a..c4333c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,9 +8,9 @@ edition = "2018" crc = "3.0" futures = "0.3" fuzzy-matcher = "0.3" -heck = "0.4" +heck = "0.5" lazy_static = "1.4" -rand = { version = "0.8", default-features = false, features = ["std_rng", "small_rng", "getrandom"] } +rand = { version = "0.10", default-features = false, features = ["std_rng", "small_rng", "getrandom"] } serde = { version = "1", features = ["derive"] } serde_json = "1" thiserror = "1.0" @@ -24,16 +24,16 @@ structopt = { version = "0.3", features = ["paw"] } # Server features chrono = { version = "0.4", optional = true } -sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate", "chrono"], optional = true } +sqlx = { version = "0.9", features = ["runtime-tokio-rustls", "sqlite", "macros", "migrate", "chrono"], optional = true } telegram-bot = { git = "https://github.com/telegram-rs/telegram-bot.git", rev = "65ad5cf", optional = true } -warp = { version = "0.3", optional = true } +warp = { version = "0.4", optional = true } # Image renderer dependencies -image = { version = "0.24", default-features = false, features = ["jpeg"], optional = true } -cairo-rs = { version = "0.18", optional = true } -pangocairo = { version = "0.18", optional = true } -pango = { version = "0.18", optional = true } -sha2 = { version = "0.10", optional = true } +image = { version = "0.25", default-features = false, features = ["jpeg"], optional = true } +cairo-rs = { version = "0.22", optional = true } +pangocairo = { version = "0.22", optional = true } +pango = { version = "0.22", optional = true } +sha2 = { version = "0.11", optional = true } hex = { version = "0.4", optional = true } [features] diff --git a/Dockerfile b/Dockerfile index 3797075..6499f54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/rust:1.74.0 AS build +FROM docker.io/library/rust:1.96.0 AS build WORKDIR /src diff --git a/rust-toolchain.toml b/rust-toolchain.toml index b98aedf..c6a795d 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.71.1" +channel = "1.96.0" components = [ "rustfmt", "clippy",