1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 04:57:45 +00:00

Merge pull request #2026 from tertsdiepraam/ls/hide_and_ignore

ls: --hide and --ignore
This commit is contained in:
Sylvestre Ledru 2021-04-05 22:31:23 +02:00 committed by GitHub
commit 7cdeb18dff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 214 additions and 10 deletions

14
Cargo.lock generated
View file

@ -644,6 +644,19 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "globset"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c152169ef1e421390738366d2f796655fec62621dabbd0fd476f905934061e4a"
dependencies = [
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
]
[[package]]
name = "half"
version = "1.7.1"
@ -1951,6 +1964,7 @@ version = "0.0.6"
dependencies = [
"atty",
"clap",
"globset",
"lazy_static",
"number_prefix",
"term_grid",