-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 894 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "ai-code-guardian"
version = "0.11.2"
edition = "2021"
authors = ["Dinakar Sarbada <dinakars777@gmail.com>"]
description = "Security scanner for AI-generated code - detects vulnerabilities before you commit"
license = "MIT"
repository = "https://github.com/dinakars777/ai-code-guardian"
keywords = ["security", "ai", "scanner", "vulnerabilities", "cli"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "ai-guardian"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
walkdir = "2.5"
regex = "1.11"
colored = "2.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.5"
crossterm = "0.27"
ratatui = "0.26"
notify = "6.1"
reqwest = { version = "0.11", features = ["json", "blocking"] }
tokio = { version = "1.0", features = ["full"] }
toml = "0.8"
globset = "0.4"