[package]
name = "ai-coding-shield"
version = "1.0.0"
edition = "2021"
authors = ["Alejandro Asensio <alejandro@kenzilab.com>"]
description = "Security auditing tool for AI development workflows, rules, skills, and MCPs"
license = "GPL-3.0-only"
repository = "https://github.com/AI-Coding-Shield/ai-coding-shield"
homepage = "https://github.com/AI-Coding-Shield/ai-coding-shield"
documentation = "https://github.com/AI-Coding-Shield/ai-coding-shield#readme"
keywords = ["security", "ai", "audit", "cli", "devsecops"]
categories = ["command-line-utilities", "development-tools", "development-tools::testing"]
exclude = ["tests/*", ".github/*", "target/*"]
[dependencies]
clap = { version = "4.5", features = ["derive", "cargo"] }
colored = "2.1"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
regex = "1.10"
lazy_static = "1.4"
walkdir = "2.4"
glob = "0.3"
anyhow = "1.0"
thiserror = "1.0"
tokio = { version = "1.35", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
strsim = "0.10"
pulldown-cmark = "0.9"
gray_matter = "0.2"
dirs = "5.0"
url = "2.5.8"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.8"
[[bin]]
name = "ai-coding-shield"
path = "src/main.rs"