Merge pull request #2115 from sameo/topic/rust-nix

cargo: Use latest nix crate for all Rust code bases
This commit is contained in:
Fabiano Fidêncio
2021-06-28 08:18:53 +02:00
committed by GitHub
6 changed files with 39 additions and 23 deletions

View File

@@ -1,5 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
version = "0.15.1"
@@ -485,7 +487,7 @@ dependencies = [
"lazy_static",
"libc",
"logging",
"nix 0.17.0",
"nix 0.21.0",
"oci",
"protobuf",
"protocols",
@@ -596,19 +598,6 @@ dependencies = [
"void",
]
[[package]]
name = "nix"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
dependencies = [
"bitflags",
"cc",
"cfg-if 0.1.10",
"libc",
"void",
]
[[package]]
name = "nix"
version = "0.19.1"
@@ -646,6 +635,19 @@ dependencies = [
"memoffset",
]
[[package]]
name = "nix"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c3728fec49d363a50a8828a190b379a446cc5cf085c06259bbbeb34447e4ec7"
dependencies = [
"bitflags",
"cc",
"cfg-if 1.0.0",
"libc",
"memoffset",
]
[[package]]
name = "ntapi"
version = "0.3.6"

View File

@@ -26,7 +26,7 @@ slog-scope = "4.3.0"
rand = "0.7.3"
protobuf = "2.14.0"
nix = "0.17.0"
nix = "0.21.0"
libc = "0.2.69"
# XXX: Must be the same as the version used by the agent
ttrpc = { version = "0.5.0" }