summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Peter <sharkdp@users.noreply.github.com>2023-02-01 21:35:47 +0100
committerGitHub <noreply@github.com>2023-02-01 21:35:47 +0100
commit9955e20d01ae9b01dfadda68f172f0bacc9e44a1 (patch)
treefffa02d6133fc62886986c369567351c0bb052de
parent03052757a731086528fad879d7b3e686b20240e9 (diff)
parentbdcc24ed04c627b98f8f098527af2e48ea8e3aa7 (diff)
Merge pull request #1253 from sharkdp/dependabot/cargo/nix-0.26.2
Bump nix from 0.25.0 to 0.26.2
-rw-r--r--Cargo.lock26
-rw-r--r--Cargo.toml2
2 files changed, 23 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e787e1b..64e06cc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -187,7 +187,7 @@ version = "3.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d91974fbbe88ec1df0c24a4f00f99583667a7e2e6272b2b92d294d81e462173"
dependencies = [
- "nix 0.25.0",
+ "nix 0.25.1",
"winapi",
]
@@ -325,7 +325,7 @@ dependencies = [
"jemallocator",
"libc",
"lscolors",
- "nix 0.25.0",
+ "nix 0.26.2",
"normpath",
"nu-ansi-term",
"num_cpus",
@@ -567,9 +567,9 @@ dependencies = [
[[package]]
name = "nix"
-version = "0.25.0"
+version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb"
+checksum = "f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4"
dependencies = [
"autocfg",
"bitflags",
@@ -578,6 +578,18 @@ dependencies = [
]
[[package]]
+name = "nix"
+version = "0.26.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
+dependencies = [
+ "bitflags",
+ "cfg-if",
+ "libc",
+ "static_assertions",
+]
+
+[[package]]
name = "normpath"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -761,6 +773,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
[[package]]
+name = "static_assertions"
+version = "1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
+
+[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index 3bbf1a5..3fbc886 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -67,7 +67,7 @@ features = ["nu-ansi-term"]
[target.'cfg(unix)'.dependencies]
users = "0.11.0"
-nix = { version = "0.25.0", default-features = false, features = ["signal"] }
+nix = { version = "0.26.2", default-features = false, features = ["signal"] }
[target.'cfg(all(unix, not(target_os = "redox")))'.dependencies]
libc = "0.2"