From c26d91fb61feba2a17103fd8c23e5dc52001c22f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 Mar 2023 09:03:02 +0100 Subject: [PATCH] Bump nix from 0.25.0 to 0.26.2 (#8129) Bumps [nix](https://github.com/nix-rust/nix) from 0.25.0 to 0.26.2.
Changelog

Sourced from nix's changelog.

[0.26.2] - 2023-01-18

Fixed

[0.26.1] - 2022-11-29

Fixed

[0.26.0] - 2022-11-29

Added

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=nix&package-manager=cargo&previous-version=0.25.0&new-version=0.26.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 18 +++--------------- Cargo.toml | 2 +- crates/nu-system/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a71350fa5..77e8f7390 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -956,7 +956,7 @@ version = "3.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbcf33c2a618cbe41ee43ae6e9f2e48368cd9f9db2896f10167d8d762679f639" dependencies = [ - "nix 0.26.2", + "nix", "windows-sys 0.45.0", ] @@ -2570,18 +2570,6 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" -[[package]] -name = "nix" -version = "0.25.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4" -dependencies = [ - "autocfg", - "bitflags", - "cfg-if 1.0.0", - "libc", -] - [[package]] name = "nix" version = "0.26.2" @@ -2674,7 +2662,7 @@ dependencies = [ "itertools", "log", "miette", - "nix 0.25.1", + "nix", "nu-ansi-term", "nu-cli", "nu-cmd-lang", @@ -3009,7 +2997,7 @@ dependencies = [ "libproc", "log", "mach2", - "nix 0.25.1", + "nix", "ntapi", "once_cell", "procfs", diff --git a/Cargo.toml b/Cargo.toml index b3c3e39f4..9a8c93321 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,7 +80,7 @@ signal-hook = { version = "0.3.14", default-features = false } winres = "0.1" [target.'cfg(target_family = "unix")'.dependencies] -nix = { version = "0.25", default-features = false, features = [ +nix = { version = "0.26", default-features = false, features = [ "signal", "process", "fs", diff --git a/crates/nu-system/Cargo.toml b/crates/nu-system/Cargo.toml index 8abcd54c4..04fe67444 100644 --- a/crates/nu-system/Cargo.toml +++ b/crates/nu-system/Cargo.toml @@ -17,7 +17,7 @@ libc = "0.2" log = "0.4" [target.'cfg(target_family = "unix")'.dependencies] -nix = { version = "0.25", default-features = false, features = ["fs", "term", "process", "signal"]} +nix = { version = "0.26", default-features = false, features = ["fs", "term", "process", "signal"]} atty = "0.2" [target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]