summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-09-06 01:15:19 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-09-06 01:15:19 +0200
commita29b5f808d39cacd6981276015603aa68afdbc1e (patch)
tree5e047d39b57db095ad23f2cfa6bec5c784ffa153 /Cargo.lock
parent339942b8fc3ba3a4300a0cab8adf00610255c8c2 (diff)
downloadrebel-a29b5f808d39cacd6981276015603aa68afdbc1e.tar
rebel-a29b5f808d39cacd6981276015603aa68afdbc1e.zip
Use rm_rf crate instead of remove_dir_all()
remove_dir_all() fails to delete overlayfs directories due to missing permissions.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock32
1 files changed, 32 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8a117a8..da67b3f 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -461,6 +461,15 @@ dependencies = [
]
[[package]]
+name = "psm"
+version = "0.1.16"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd136ff4382c4753fc061cb9e4712ab2af263376b95bbd5bd8cd50c020b78e69"
+dependencies = [
+ "cc",
+]
+
+[[package]]
name = "quote"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -561,6 +570,7 @@ dependencies = [
"nix",
"oci-spec",
"olpc-cjson",
+ "rm_rf",
"serde",
"serde_json",
"serde_yaml",
@@ -590,6 +600,15 @@ dependencies = [
]
[[package]]
+name = "rm_rf"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9b76a2cc4e96dea40afd3a45baf51a2e36a1f8bf61405cf88a2b15367f68c658"
+dependencies = [
+ "stacker",
+]
+
+[[package]]
name = "ryu"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -667,6 +686,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
[[package]]
+name = "stacker"
+version = "0.1.14"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "90939d5171a4420b3ff5fbc8954d641e7377335454c259dcb80786f3f21dc9b4"
+dependencies = [
+ "cc",
+ "cfg-if 1.0.0",
+ "libc",
+ "psm",
+ "winapi 0.3.9",
+]
+
+[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"