deps: bump clap to 4.2.7 and libc to 0.2.143 (#1136)

This commit is contained in:
Clement Tsang 2023-05-07 04:35:42 -04:00 committed by GitHub
parent f00d09ded5
commit a62fdc5e04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 11 deletions

12
Cargo.lock generated
View file

@ -226,18 +226,18 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
version = "4.2.5"
version = "4.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a1f23fa97e1d1641371b51f35535cb26959b8e27ab50d167a8b996b5bada819"
checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938"
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
version = "4.2.5"
version = "4.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fdc5d93c358224b4d6867ef1356d740de2303e9892edc06c5340daeccd96bab"
checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd"
dependencies = [
"anstream",
"anstyle",
@ -685,9 +685,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "libc"
version = "0.2.142"
version = "0.2.143"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317"
checksum = "edc207893e85c5d6be840e969b496b53d94cec8be2d501b214f50daa97fa8024"
[[package]]
name = "libloading"

View file

@ -78,7 +78,7 @@ logging = ["fern", "log"]
anyhow = "1.0.71"
backtrace = "0.3.67"
cfg-if = "1.0.0"
clap = { version = "4.2.5", features = ["default", "cargo", "wrap_help"] }
clap = { version = "4.2.7", features = ["default", "cargo", "wrap_help"] }
concat-string = "1.0.1"
crossterm = "0.26.1"
ctrlc = { version = "3.2.5", features = ["termination"] }
@ -107,7 +107,7 @@ unicode-segmentation = "1.10.1"
unicode-width = "0.1.10"
[target.'cfg(unix)'.dependencies]
libc = "0.2.142"
libc = "0.2.143"
[target.'cfg(target_os = "linux")'.dependencies]
procfs = { version = "0.15.1", default-features = false }
@ -140,7 +140,7 @@ cargo-husky = { version = "1.5.0", default-features = false, features = [
predicates = "3.0.3"
[build-dependencies]
clap = { version = "4.2.5", features = ["default", "cargo", "wrap_help"] }
clap = { version = "4.2.7", features = ["default", "cargo", "wrap_help"] }
clap_complete = "4.2.1"
clap_mangen = "0.2.10"

View file

@ -61,11 +61,9 @@ pub enum FileSystem {
/// APFS (https://en.wikipedia.org/wiki/Apple_File_System)
Apfs,
// TODO: Should it be considered as a physical FS?
/// FUSE (https://en.wikipedia.org/wiki/Filesystem_in_Userspace)
FuseBlk,
// TODO: Extend list
/// Some unspecified filesystem.
Other(String),
}