This commit is contained in:
2025-04-04 18:21:16 +02:00
parent eca7e6f552
commit c9b4010089
18 changed files with 1018 additions and 45 deletions

View File

@@ -24,6 +24,7 @@ glob = "0.3.1" # For file pattern matching
tempfile = "3.5" # For temporary file operations
log = "0.4" # Logging facade
rhai = { version = "1.12.0", features = ["sync"] } # Embedded scripting language
clap = "2.33" # Command-line argument parsing
# Optional features for specific OS functionality
[target.'cfg(unix)'.dependencies]
@@ -34,3 +35,7 @@ windows = { version = "0.48", features = ["Win32_Foundation", "Win32_System_Thre
[dev-dependencies]
tempfile = "3.5" # For tests that need temporary files/directories
[[bin]]
name = "herodo"
path = "src/bin/herodo.rs"