From 973810cf737f83aa6ac34cc3822c793c8efc09d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 13:31:45 +0000 Subject: [PATCH 1/2] Update rand requirement from 0.9.0 to 0.10.0 Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/rand_core-0.9.1...0.10.0) --- updated-dependencies: - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- vidformer-igni/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vidformer-igni/Cargo.toml b/vidformer-igni/Cargo.toml index 946d1a4..be2a079 100644 --- a/vidformer-igni/Cargo.toml +++ b/vidformer-igni/Cargo.toml @@ -22,7 +22,7 @@ regex = "1" "num-rational" = { version = "0.4", features=["serde"] } "num" = "0.4" "toml" = "1.0.1" -"rand" = "0.9.0" +"rand" = "0.10.0" zstd = "0.13" base64 = "0.22.1" flate2 = "1.0" From 290812e8c2f3eeea673753123e69f4eff2ebc5f1 Mon Sep 17 00:00:00 2001 From: Dominik Winecki Date: Wed, 18 Feb 2026 15:01:43 +0000 Subject: [PATCH 2/2] Fix build --- vidformer-igni/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vidformer-igni/src/main.rs b/vidformer-igni/src/main.rs index 9bef213..49e9f12 100644 --- a/vidformer-igni/src/main.rs +++ b/vidformer-igni/src/main.rs @@ -1,5 +1,5 @@ use clap::{Parser, Subcommand}; -use rand::Rng; +use rand::RngExt; use sqlx::postgres::PgPoolOptions; use tabled::{Table, Tabled};