-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (38 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
40 lines (38 loc) · 1.01 KB
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
32
33
34
35
36
37
38
39
40
[package]
name = "agentwise"
version = "0.1.3"
edition = "2021"
description = "A fast, offline security scanner for MCP server configurations"
license = "MIT"
repository = "https://github.com/brandonwise/agentwise"
readme = "README.md"
keywords = ["mcp", "security", "scanner", "ai-agents", "cli"]
categories = ["command-line-utilities", "development-tools"]
include = [
"src/**",
"cvedb/**",
"tests/**",
"testdata/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE-MIT",
]
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
owo-colors = "4"
walkdir = "2"
regex = "1"
glob = "0.3"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
semver = "1"
toml = "0.8"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true