Files
env-guard/Cargo.toml
CI Bot fc90e05ebb
Some checks failed
CI / test (push) Failing after 9s
CI / binary (push) Has been skipped
CI / release (push) Has been skipped
Initial commit: env-guard CLI tool with CI/CD
2026-02-06 10:01:25 +00:00

39 lines
839 B
TOML

[package]
name = "env-guard"
version = "0.1.0"
edition = "2021"
description = "A Rust CLI tool that automatically detects, validates, and secures environment variables"
authors = ["Env Guard Contributors"]
repository = "https://7000pct.gitea.bloupla.net/7000pctAUTO/env-guard"
license = "MIT"
keywords = ["cli", "env", "security", "validator"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = { version = "4.4", features = ["derive"] }
anyhow = "1.0"
confy = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1.10"
toml = "0.8"
thiserror = "1.0"
dirs = "5.0"
[[bin]]
name = "env-guard"
path = "src/main.rs"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
[profile.release]
strip = true
lto = true
opt-level = 3
[features]
default = []
dev = ["clap/debug"]