diff options
| author | diogo464 <[email protected]> | 2025-06-19 09:17:19 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-06-19 09:17:19 +0100 |
| commit | a8e1212c07fb489cfa430ef64fb3a1c8df464a22 (patch) | |
| tree | 0cdb62dacc5e8093286216e37af44fbbaa9d9bd8 /Cargo.toml | |
| parent | 0f9ae08bae9a9b417a741ebc8161cdeb6dbb39ca (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.toml | 1 |
1 files changed, 0 insertions, 1 deletions
| @@ -7,7 +7,6 @@ edition = "2024" | |||
| 7 | anyhow = "1.0.98" | 7 | anyhow = "1.0.98" |
| 8 | clap = { version = "4.5.40", features = ["derive"] } | 8 | clap = { version = "4.5.40", features = ["derive"] } |
| 9 | ctrlc = "3.4.7" | 9 | ctrlc = "3.4.7" |
| 10 | glob = "0.3.2" | ||
| 11 | notify = "8.0.0" | 10 | notify = "8.0.0" |
| 12 | tracing = "0.1.41" | 11 | tracing = "0.1.41" |
| 13 | tracing-subscriber = "0.3.19" | 12 | tracing-subscriber = "0.3.19" |
