Initial commit: env-guard CLI tool with CI/CD
This commit is contained in:
38
Cargo.toml
Normal file
38
Cargo.toml
Normal file
@@ -0,0 +1,38 @@
|
||||
[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"]
|
||||
Reference in New Issue
Block a user