Check for remaining disk space (#150)

This commit is contained in:
ByteDream 2023-04-09 19:26:42 +02:00 committed by ByteDream
parent ee1344fc6b
commit 5f98cfb186
3 changed files with 110 additions and 5 deletions

11
Cargo.lock generated
View file

@ -355,6 +355,7 @@ dependencies = [
"ctrlc",
"derive_setters",
"dirs",
"fs2",
"indicatif",
"lazy_static",
"log",
@ -675,6 +676,16 @@ version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541"
[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "futures-channel"
version = "0.3.28"