1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2025-02-05 13:38:31 +00:00

build(deps): update rust crate nix to 0.27.0

This commit is contained in:
renovate[bot] 2023-08-28 04:11:34 +00:00 committed by GitHub
parent 38e9f59ee7
commit 4af140bfb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 5 deletions

19
Cargo.lock generated
View File

@ -2111,6 +2111,17 @@ dependencies = [
"static_assertions", "static_assertions",
] ]
[[package]]
name = "nix"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "896d4664b919f48478f3ce02c502adfe9bffeb61563d2a12ddf1aad8f6cd926f"
dependencies = [
"bitflags 2.3.3",
"cfg-if",
"libc",
]
[[package]] [[package]]
name = "nom" name = "nom"
version = "5.1.3" version = "5.1.3"
@ -3010,7 +3021,7 @@ dependencies = [
"indexmap 1.9.3", "indexmap 1.9.3",
"log", "log",
"mockall", "mockall",
"nix", "nix 0.27.0",
"notify-rust", "notify-rust",
"nu-ansi-term", "nu-ansi-term",
"once_cell", "once_cell",
@ -3060,7 +3071,7 @@ dependencies = [
"lazycell", "lazycell",
"libc", "libc",
"mach2", "mach2",
"nix", "nix 0.26.2",
"num-traits", "num-traits",
"uom", "uom",
"winapi", "winapi",
@ -3766,7 +3777,7 @@ version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd" checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd"
dependencies = [ dependencies = [
"nix", "nix 0.26.2",
"winapi", "winapi",
] ]
@ -3803,7 +3814,7 @@ dependencies = [
"futures-sink", "futures-sink",
"futures-util", "futures-util",
"hex", "hex",
"nix", "nix 0.26.2",
"once_cell", "once_cell",
"ordered-stream", "ordered-stream",
"rand", "rand",

View File

@ -114,7 +114,7 @@ features = [
] ]
[target.'cfg(not(windows))'.dependencies] [target.'cfg(not(windows))'.dependencies]
nix = { version = "0.26.2", default-features = false, features = ["feature", "fs", "user"] } nix = { version = "0.27.0", default-features = false, features = ["feature", "fs", "user"] }
[build-dependencies] [build-dependencies]
shadow-rs = { version = "0.23.0", default-features = false } shadow-rs = { version = "0.23.0", default-features = false }