chore: bump nix from 0.17.0 to 0.19.0

Bumps [nix](https://github.com/nix-rust/nix) from 0.17.0 to 0.19.0.
- [Release notes](https://github.com/nix-rust/nix/releases)
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nix-rust/nix/compare/v0.17.0...v0.19.0)

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2020-11-18 09:02:36 +00:00 committed by Michael Vines
parent 8ea6dd7513
commit 892a2eacff
5 changed files with 23 additions and 11 deletions

26
Cargo.lock generated
View File

@ -779,7 +779,7 @@ version = "3.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54dedab740bc412d514cfbc4a1d9d5d16fed02c4b14a7be129003c07fdc33b9b"
dependencies = [
"nix",
"nix 0.17.0",
"winapi 0.3.8",
]
@ -1940,9 +1940,9 @@ checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
[[package]]
name = "libc"
version = "0.2.72"
version = "0.2.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9f8082297d534141b30c8d39e9b1773713ab50fdbe4ff30f750d063b3bfd701"
checksum = "4d58d1b70b004888f764dfbf6a26a3b0342a1632d33968e4a179d8011c760614"
[[package]]
name = "libloading"
@ -2253,6 +2253,18 @@ dependencies = [
"void",
]
[[package]]
name = "nix"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85db2feff6bf70ebc3a4793191517d5f0331100a2f10f9bf93b5e5214f32b7b7"
dependencies = [
"bitflags",
"cc",
"cfg-if 0.1.10",
"libc",
]
[[package]]
name = "nom"
version = "3.2.1"
@ -4200,7 +4212,7 @@ dependencies = [
"dirs-next",
"indicatif",
"lazy_static",
"nix",
"nix 0.19.0",
"reqwest",
"semver 0.9.0",
"serde",
@ -4438,7 +4450,7 @@ dependencies = [
"bytes 0.4.12",
"clap",
"log 0.4.8",
"nix",
"nix 0.19.0",
"rand 0.7.3",
"serde",
"serde_derive",
@ -4920,7 +4932,7 @@ version = "1.5.0"
dependencies = [
"libc",
"log 0.4.8",
"nix",
"nix 0.19.0",
"solana-logger 1.5.0",
"solana-measure",
"solana-metrics",
@ -4936,7 +4948,7 @@ dependencies = [
"clap",
"libc",
"log 0.4.8",
"nix",
"nix 0.19.0",
"solana-clap-utils",
"solana-logger 1.5.0",
"solana-version",

View File

@ -19,7 +19,7 @@ ctrlc = { version = "3.1.5", features = ["termination"] }
dirs-next = "2.0.0"
indicatif = "0.15.0"
lazy_static = "1.4.0"
nix = "0.17.0"
nix = "0.19.0"
reqwest = { version = "0.10.8", default-features = false, features = ["blocking", "rustls-tls", "json"] }
serde = "1.0.112"
serde_derive = "1.0.103"

View File

@ -13,7 +13,7 @@ bincode = "1.3.1"
bytes = "0.4"
clap = "2.33.1"
log = "0.4.8"
nix = "0.17.0"
nix = "0.19.0"
rand = "0.7.0"
serde = "1.0.112"
serde_derive = "1.0.103"

View File

@ -16,7 +16,7 @@ thiserror = "1.0"
solana-measure = { path = "../measure", version = "1.5.0" }
solana-logger = { path = "../logger", version = "1.5.0" }
libc = "0.2.72"
nix = "0.17.0"
nix = "0.19.0"
solana-perf = { path = "../perf", version = "1.5.0" }
[dev-dependencies]

View File

@ -20,7 +20,7 @@ solana-version = { path = "../version", version = "1.5.0" }
[target."cfg(unix)".dependencies]
unix_socket2 = "0.5.4"
users = "0.10.0"
nix = "0.17.0"
nix = "0.19.0"
sysctl = "0.4.0"
[lib]