From d38ee56cefc5d8ae03907b715665f8984c396451 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 10:51:41 +0000 Subject: [PATCH] chore(deps): bump the rust-dependencies group across 1 directory with 3 updates Bumps the rust-dependencies group with 3 updates in the / directory: [av1-grain](https://github.com/rust-av/av1-grain), [rand](https://github.com/rust-random/rand) and [clap_complete](https://github.com/clap-rs/clap). Updates `av1-grain` from 0.4.1 to 0.4.2 - [Release notes](https://github.com/rust-av/av1-grain/releases) - [Changelog](https://github.com/rust-av/av1-grain/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-av/av1-grain/compare/v0.4.1...v0.4.2) Updates `rand` from 0.10.0 to 0.10.1 - [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/0.10.0...0.10.1) Updates `clap_complete` from 4.6.0 to 4.6.1 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.6.0...clap_complete-v4.6.1) --- updated-dependencies: - dependency-name: av1-grain dependency-version: 0.4.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: rand dependency-version: 0.10.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: clap_complete dependency-version: 4.6.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 13 +++++++------ av1an-core/Cargo.toml | 4 ++-- av1an/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 70604c63a..e8afe6763 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -218,12 +218,13 @@ dependencies = [ [[package]] name = "av1-grain" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c799433bc1f0ed14d949885186738de9976cfcaefef0e3ab7103fe5c630cb2b" +checksum = "620afb8bfa7c1eaef9f5b6284ff7c1e239b85ac9c56b9f2df1f101ea9827d379" dependencies = [ "anyhow", "arrayvec", + "cfg-if", "log", ] @@ -431,9 +432,9 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.6.0" +version = "4.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19c9f1dde76b736e3681f28cec9d5a61299cbaae0fce80a68e43724ad56031eb" +checksum = "406e68b4de5c59cfb8f750a7cbd4d31ae153788b8352167c1e5f4fc26e8c91e9" dependencies = [ "clap", ] @@ -1491,9 +1492,9 @@ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" [[package]] name = "rand" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8" +checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207" dependencies = [ "chacha20", "getrandom 0.4.2", diff --git a/av1an-core/Cargo.toml b/av1an-core/Cargo.toml index 766aaa224..2194f8b69 100644 --- a/av1an-core/Cargo.toml +++ b/av1an-core/Cargo.toml @@ -24,7 +24,7 @@ av-scenechange = { version = "0.23.0", default-features = false, features = [ "asm", "vapoursynth", ] } -av1-grain = { version = "0.4.1", default-features = false, features = [ +av1-grain = { version = "0.4.2", default-features = false, features = [ "create", ] } cfg-if = "1.0.4" @@ -43,7 +43,7 @@ plotters = { version = "0.3.1", default-features = false, features = [ "svg_backend", "line_series", ] } -rand = "0.10.0" +rand = "0.10.1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simdutf8 = "0.1.3" diff --git a/av1an/Cargo.toml b/av1an/Cargo.toml index a7fd40b27..a7cccc39c 100644 --- a/av1an/Cargo.toml +++ b/av1an/Cargo.toml @@ -20,7 +20,7 @@ path = "src/main.rs" anyhow = { workspace = true } av1an-core = { path = "../av1an-core", version = "0.5.1" } clap = { version = "4.5.60", features = ["derive"] } -clap_complete = "4.5.66" +clap_complete = "4.6.1" num-traits = { workspace = true } once_cell = { workspace = true } path_abs = { workspace = true }