[package]
edition = "2021"
name = "agentprey"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Security testing scanner for AI agents"
homepage = "https://github.com/agentprey/agentprey"
readme = "README.md"
keywords = [
"security",
"ai",
"cli",
"prompt-injection",
"testing",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/agentprey/agentprey"
[lib]
name = "agentprey"
path = "src/lib.rs"
[[bin]]
name = "agentprey"
path = "src/main.rs"
[[test]]
name = "e2e_scan"
path = "tests/e2e_scan.rs"
[[test]]
name = "reporting"
path = "tests/reporting.rs"
[[test]]
name = "resilience"
path = "tests/resilience.rs"
[[test]]
name = "scan_vectors"
path = "tests/scan_vectors.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "2"
[dependencies.console]
version = "0.15"
[dependencies.include_dir]
version = "0.7"
[dependencies.indicatif]
version = "0.17"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]
[dependencies.toml]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tiny_http]
version = "0.12"