summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-12-01 11:21:20 +0800
committer魏曹先生 <1992414357@qq.com>2025-12-01 11:21:20 +0800
commit8ad597222a3f768b5ba3e260dd896ea64a0bf70a (patch)
tree1614a9cb1373f8fb99819b763722274d8e0cfc06 /Cargo.lock
parent380501cb3b69bc540953d671142a50de9cb62b51 (diff)
Add glob pattern matching utility
This implements a Globber struct that can match files and directories using wildcard patterns (* and ?). It supports relative paths, home directory expansion with ~, and cross-platform path separators. The implementation includes pattern matching with backtracking for complex patterns and handles different directory prefixes (current, user home, and root).
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5b10037..a66de49 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -962,6 +962,7 @@ dependencies = [
"chrono",
"clap",
"colored",
+ "dirs",
"env_logger",
"just_enough_vcs",
"log",