summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDidier Wenzek <didier.wenzek@acidalie.com>2022-07-25 11:21:27 +0200
committerGitHub <noreply@github.com>2022-07-25 11:21:27 +0200
commit602a90f5068bcd0c42cb22e20e8c9594e9e7a8bb (patch)
tree646ce592ca63c867f32f419b460f2bffe34c0df0
parent3e85f1e90aa49d7a7ee40bd4714af47dbcfdde47 (diff)
parent813d3b7d64f10b75c604248e635bcba769529ef9 (diff)
Merge pull request #1292 from thin-edge/dependabot/cargo/nix-0.24.2
Bump nix from 0.23.1 to 0.24.2
-rw-r--r--Cargo.lock19
-rw-r--r--crates/common/download/Cargo.toml2
-rw-r--r--crates/common/flockfile/Cargo.toml2
3 files changed, 5 insertions, 18 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2105bc9e..cd409d58 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -868,7 +868,7 @@ dependencies = [
"backoff",
"log",
"mockito",
- "nix 0.23.1",
+ "nix",
"regex",
"reqwest",
"serde",
@@ -983,7 +983,7 @@ name = "flockfile"
version = "0.7.3"
dependencies = [
"assert_matches",
- "nix 0.23.1",
+ "nix",
"tempfile",
"thiserror",
"tracing",
@@ -1697,19 +1697,6 @@ dependencies = [
[[package]]
name = "nix"
-version = "0.23.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
-dependencies = [
- "bitflags",
- "cc",
- "cfg-if 1.0.0",
- "libc",
- "memoffset",
-]
-
-[[package]]
-name = "nix"
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc"
@@ -2989,7 +2976,7 @@ dependencies = [
"futures",
"inotify",
"maplit",
- "nix 0.24.2",
+ "nix",
"strum_macros",
"tedge_test_utils",
"tempfile",
diff --git a/crates/common/download/Cargo.toml b/crates/common/download/Cargo.toml
index 504600ba..ab4d1026 100644
--- a/crates/common/download/Cargo.toml
+++ b/crates/common/download/Cargo.toml
@@ -10,7 +10,7 @@ description = "download_manager"
[dependencies]
backoff = { version = "0.4", features = ["tokio"] }
log = "0.4"
-nix = "0.23"
+nix = "0.24"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
diff --git a/crates/common/flockfile/Cargo.toml b/crates/common/flockfile/Cargo.toml
index 90b000fe..e57dad24 100644
--- a/crates/common/flockfile/Cargo.toml
+++ b/crates/common/flockfile/Cargo.toml
@@ -9,7 +9,7 @@ rust-version = "1.58.1"
thiserror = "1.0"
[target.'cfg(unix)'.dependencies]
-nix = "0.23"
+nix = "0.24"
tracing = { version = "0.1", features = ["log"] }
[dev-dependencies]