From f3ccd0db2b7ae8c1a444557dbd43b2c439351915 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 04:43:15 +0000 Subject: [PATCH 1/2] build(deps): update redox_syscall requirement from 0.7 to 0.9 Updates the requirements on redox_syscall to permit the latest version. --- updated-dependencies: - dependency-name: redox_syscall dependency-version: 0.9.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d9ffcb09..920b272f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -140,7 +140,7 @@ web-sys = { version = "0.3.55", features = [ # Orbital dependencies. [target.'cfg(target_os = "redox")'.dependencies] -redox_syscall = "0.7" +redox_syscall = "0.9" [package.metadata.docs.rs] all-features = true From 47aa778f52fcc3e49bc714c5790c4cd4bdc35b81 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Tue, 7 Jul 2026 15:11:44 +0200 Subject: [PATCH 2/2] kms: Fix `clippy::manual_option_zip` --- src/backends/kms.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/kms.rs b/src/backends/kms.rs index e82770c2..9f6d8f81 100644 --- a/src/backends/kms.rs +++ b/src/backends/kms.rs @@ -429,7 +429,7 @@ impl SharedBuffer { let (width, height) = self.db.size(); NonZeroU32::new(width) - .and_then(|width| NonZeroU32::new(height).map(|height| (width, height))) + .zip(NonZeroU32::new(height)) .expect("buffer size is zero") } }