From ff5eed8c6c16b252c152ec4a2662598270aa2404 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Fri, 24 Jul 2026 00:58:13 -0400 Subject: [PATCH] deps: bump rustix to 1.1.4 and libc to 0.2.189 (#2171) Bumps rustix to 1.1.4 and libc to 0.2.189. --- Cargo.lock | 12 ++++++------ Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1294359a..86611812 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -789,9 +789,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.186" +version = "0.2.189" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" +checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2" [[package]] name = "libloading" @@ -830,9 +830,9 @@ dependencies = [ [[package]] name = "linux-raw-sys" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" [[package]] name = "litrs" @@ -1364,9 +1364,9 @@ dependencies = [ [[package]] name = "rustix" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ "bitflags 2.13.0", "errno", diff --git a/Cargo.toml b/Cargo.toml index 987a0680..617d1ad6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -105,10 +105,10 @@ schemars = { version = "1.2.1", optional = true } strum = { version = "0.27.2", features = ["derive"], optional = true } [target.'cfg(unix)'.dependencies] -libc = "0.2.180" +libc = "0.2.189" [target.'cfg(target_os = "linux")'.dependencies] -rustix = { version = "1.1.2", features = ["fs", "param"] } +rustix = { version = "1.1.4", features = ["fs", "param"] } [target.'cfg(target_os = "macos")'.dependencies] core-foundation = "0.10.1"