aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
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.toml
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.toml')
-rw-r--r--Cargo.toml1
1 files changed, 0 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index ee3e226..0af2bf8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,7 +7,6 @@ edition = "2024"
7anyhow = "1.0.98" 7anyhow = "1.0.98"
8clap = { version = "4.5.40", features = ["derive"] } 8clap = { version = "4.5.40", features = ["derive"] }
9ctrlc = "3.4.7" 9ctrlc = "3.4.7"
10glob = "0.3.2"
11notify = "8.0.0" 10notify = "8.0.0"
12tracing = "0.1.41" 11tracing = "0.1.41"
13tracing-subscriber = "0.3.19" 12tracing-subscriber = "0.3.19"