summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Wernick <worthe-it@noreply.codeberg.org>2023-09-15 16:41:10 +0000
committerJustin Wernick <worthe-it@noreply.codeberg.org>2023-09-15 16:41:10 +0000
commit7021fe39d410e4e466b03a1470fc850f48b2282d (patch)
treea73312ea4443251cc96ef2e5976fe8ffb0206954
parent69efc01c9d956478f89fdffa0d62aefde06534f3 (diff)
parent407d4c3c93ad4eace6f00fbe1bc20022d6385558 (diff)
Merge pull request 'Update Rust crate nix to 0.27.1' (#18) from renovate/nix-0.x into main
Reviewed-on: https://codeberg.org/worthe-it/shackle-shell/pulls/18
-rw-r--r--Cargo.lock17
-rw-r--r--Cargo.toml2
2 files changed, 15 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 726d8d8..3da3d03 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -384,9 +384,9 @@ dependencies = [
[[package]]
name = "libc"
-version = "0.2.139"
+version = "0.2.148"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
+checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
[[package]]
name = "libgit2-sys"
@@ -497,6 +497,17 @@ dependencies = [
]
[[package]]
+name = "nix"
+version = "0.27.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
+dependencies = [
+ "bitflags 2.4.0",
+ "cfg-if",
+ "libc",
+]
+
+[[package]]
name = "normalize-line-endings"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -726,7 +737,7 @@ dependencies = [
"get-port",
"git2",
"humansize",
- "nix 0.26.2",
+ "nix 0.27.1",
"once_cell",
"predicates 2.1.5",
"rexpect",
diff --git a/Cargo.toml b/Cargo.toml
index 10f195a..819b9b9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,7 +18,7 @@ clap = { version = "4.4.3", features = ["derive"] }
comfy-table = "6.2.0"
git2 = { version = "0.18.0", default-features = false, features = ["vendored-libgit2"] }
humansize = "2.1.3"
-nix = { version = "0.26.2", default-features = false, features = ["user"] }
+nix = { version = "0.27.1", default-features = false, features = ["user", "fs"] }
rustyline = { version = "11.0.0", default-features = false }
shlex = "1.1.0"
thiserror = "1.0.48"