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

4
src/agent/Cargo.lock generated
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"
@@ -1796,7 +1798,7 @@ dependencies = [
"bincode",
"byteorder",
"libc",
"nix 0.20.0",
"nix 0.21.0",
"opentelemetry",
"serde",
"slog",

View File

@@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nix = "0.20.0"
nix = "0.21.0"
libc = "0.2.94"
thiserror = "1.0.24"
opentelemetry = { version = "0.14.0", features=["serialize"] }