From 15f580f327e88e8e6ca07b3917ba41d105f1ed35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 03:55:29 +0000 Subject: [PATCH] chore(deps): bump nix from 0.28.0 to 0.31.3 Bumps [nix](https://github.com/nix-rust/nix) from 0.28.0 to 0.31.3. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.28.0...v0.31.3) --- updated-dependencies: - dependency-name: nix dependency-version: 0.31.3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 +++++++++++++++++++++--- crates/linkcode-pty/Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ffe2ed192..326572228 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,6 +51,12 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" +[[package]] +name = "cfg_aliases" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" + [[package]] name = "dispatch2" version = "0.3.1" @@ -107,7 +113,7 @@ name = "linkcode-pty" version = "0.1.0" dependencies = [ "anyhow", - "nix", + "nix 0.31.3", "portable-pty", "serde", "serde_json", @@ -146,7 +152,19 @@ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" dependencies = [ "bitflags 2.13.0", "cfg-if", - "cfg_aliases", + "cfg_aliases 0.1.1", + "libc", +] + +[[package]] +name = "nix" +version = "0.31.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf20d2fde8ff38632c426f1165ed7436270b44f199fc55284c38276f9db47c3d" +dependencies = [ + "bitflags 2.13.0", + "cfg-if", + "cfg_aliases 0.2.2", "libc", ] @@ -214,7 +232,7 @@ dependencies = [ "lazy_static", "libc", "log", - "nix", + "nix 0.28.0", "serial2", "shared_library", "shell-words", diff --git a/crates/linkcode-pty/Cargo.toml b/crates/linkcode-pty/Cargo.toml index 1819fe00c..1f5029517 100644 --- a/crates/linkcode-pty/Cargo.toml +++ b/crates/linkcode-pty/Cargo.toml @@ -19,4 +19,4 @@ serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.150" [target.'cfg(all(unix, not(target_os = "fuchsia")))'.dependencies] -nix = { version = "0.28", features = ["signal"] } +nix = { version = "0.31", features = ["signal"] }