fix: remove unused Validator initialization causing clippy warnings
Some checks failed
CI / test (push) Has started running
CI / binary (push) Has been cancelled
CI / release (push) Has been cancelled

This commit is contained in:
2026-02-06 10:40:05 +00:00
parent 0de646aedf
commit 3bbcb0cbaa

19
.envguard.toml Normal file
View File

@@ -0,0 +1,19 @@
[tool.envguard]
name = "env-guard"
version = "0.1.0"
description = "A comprehensive .env file guardian tool for validation, scanning, and secrets detection"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1.10"
[features]
default = ["std"]
std = []
[profile.release]
lto = true
opt-level = 3