From ece94b7bb9d318ea8629195cc5626328c2acfa58 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 20 Sep 2026 04:22:46 +0000 Subject: [PATCH] Chore(deps): Bump rustix from 1.1.4 to 1.1.5 Bumps [rustix](https://github.com/bytecodealliance/rustix) from 1.1.4 to 1.1.5. - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md) - [Commits](https://github.com/bytecodealliance/rustix/compare/v1.1.4...v1.1.5) --- updated-dependencies: - dependency-name: rustix dependency-version: 1.1.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- repository-process-spawn/Cargo.toml | 2 +- xtask/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f5b15c6..2ca1d80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -413,9 +413,9 @@ dependencies = [ [[package]] name = "rustix" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" +checksum = "891efababe418670775f199f0d233d84843c227a0949a883ce15b37c78d6629d" dependencies = [ "bitflags", "errno", diff --git a/Cargo.toml b/Cargo.toml index 230d7cf..436cc95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ repository-tasks = [] blake3 = { version = "=1.8.5", default-features = false, features = ["pure", "std"] } cap-fs-ext = { version = "=4.0.2", default-features = false, features = ["std"] } cap-std = { version = "=4.0.2", default-features = false } -rustix = { version = "=1.1.4", default-features = false, features = ["fs", "std"] } +rustix = { version = "=1.1.5", default-features = false, features = ["fs", "std"] } [dev-dependencies] allocation-counter = { version = "=0.8.1", default-features = false } diff --git a/repository-process-spawn/Cargo.toml b/repository-process-spawn/Cargo.toml index 1e6a5e4..42d334a 100644 --- a/repository-process-spawn/Cargo.toml +++ b/repository-process-spawn/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" publish = false [dependencies] -rustix = { version = "=1.1.4", default-features = false, features = ["process", "std"] } +rustix = { version = "=1.1.5", default-features = false, features = ["process", "std"] } [lints] workspace = true diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index a108967..0d8b793 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -36,7 +36,7 @@ md-5 = { version = "=0.11.0", default-features = false, optional = true } # Dedicated unsafe boundary sets exact child working directories by descriptor. repository-process-spawn = { path = "../repository-process-spawn", optional = true } # Safe POSIX descriptor flags and process-group signaling bound repository tools. -rustix = { version = "=1.1.4", default-features = false, features = ["fs", "process", "std"], optional = true } +rustix = { version = "=1.1.5", default-features = false, features = ["fs", "process", "std"], optional = true } # Serde drives duplicate-refusing repository JSON admission; no types escape xtask. serde = { version = "=1.0.229", default-features = false, features = ["std"], optional = true } # Typed JSON admission checks the committed documentation-tool lock graph.