aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-06-19 09:17:19 +0100
committerdiogo464 <[email protected]>2025-06-19 09:17:19 +0100
commita8e1212c07fb489cfa430ef64fb3a1c8df464a22 (patch)
tree0cdb62dacc5e8093286216e37af44fbbaa9d9bd8 /Cargo.lock
parent0f9ae08bae9a9b417a741ebc8161cdeb6dbb39ca (diff)
Replace glob dependency with std::fs directory traversal
- Remove glob crate usage in favor of std::fs::read_dir() - Create find_pid_files() helper function using std::fs - Update list_daemons() and clean_orphaned_files() functions - Maintain same functionality while reducing dependencies - Fix indentation issues after conversion - All tests pass, functionality preserved 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock7
1 files changed, 0 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 25252ed..31d29b6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -188,7 +188,6 @@ dependencies = [
188 "assert_cmd", 188 "assert_cmd",
189 "clap", 189 "clap",
190 "ctrlc", 190 "ctrlc",
191 "glob",
192 "notify", 191 "notify",
193 "predicates", 192 "predicates",
194 "tempfile", 193 "tempfile",
@@ -267,12 +266,6 @@ dependencies = [
267] 266]
268 267
269[[package]] 268[[package]]
270name = "glob"
271version = "0.3.2"
272source = "registry+https://github.com/rust-lang/crates.io-index"
273checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
274
275[[package]]
276name = "heck" 269name = "heck"
277version = "0.5.0" 270version = "0.5.0"
278source = "registry+https://github.com/rust-lang/crates.io-index" 271source = "registry+https://github.com/rust-lang/crates.io-index"