summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorkyoheiu <kyoheiu@outlook.com>2022-11-27 06:31:07 +0900
committerkyoheiu <kyoheiu@outlook.com>2022-11-27 06:31:07 +0900
commitd29823f0b68ca1c861fb09fe944f6609c9784454 (patch)
treeb1cd79aa617ce6e721d5bc01913034117202f369 /Cargo.lock
parent2b8a48919f26088385cc11f9587d15676ca6053e (diff)
Add nix, libc (cfg unix)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock31
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 231e67d..a4d7ce5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -332,9 +332,11 @@ dependencies = [
"crossterm",
"dirs",
"flate2",
+ "libc",
"log",
"lzma-rs",
"natord",
+ "nix",
"serde",
"serde_yaml",
"simplelog",
@@ -533,6 +535,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
+name = "memoffset"
+version = "0.6.5"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
+dependencies = [
+ "autocfg",
+]
+
+[[package]]
name = "miniz_oxide"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -560,6 +571,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "308d96db8debc727c3fd9744aac51751243420e46edf401010908da7f8d5e57c"
[[package]]
+name = "nix"
+version = "0.25.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb"
+dependencies = [
+ "autocfg",
+ "bitflags",
+ "cfg-if",
+ "libc",
+ "memoffset",
+ "pin-utils",
+]
+
+[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -668,6 +693,12 @@ dependencies = [
]
[[package]]
+name = "pin-utils"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
+
+[[package]]
name = "pkg-config"
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"