[package]
edition = "2024"
rust-version = "1.88"
name = "thoughtjack"
version = "0.6.0"
build = "build.rs"
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adversarial agent security testing tool"
homepage = "https://github.com/thoughtgate/thoughtjack"
readme = "README.md"
keywords = [
"mcp",
"security",
"testing",
"adversarial",
"a2a",
]
categories = ["development-tools::testing"]
license = "Apache-2.0"
repository = "https://github.com/thoughtgate/thoughtjack"
[package.metadata.dist]
dist = true
[features]
default = []
[lib]
name = "thoughtjack"
path = "src/lib.rs"
[[bin]]
name = "thoughtjack"
path = "src/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
[dependencies.bytes]
version = "1.11"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.dashmap]
version = "6.1"
[dependencies.futures-util]
version = "0.3"
[dependencies.humantime]
version = "2"
[dependencies.metrics]
version = "0.24"
[dependencies.metrics-exporter-prometheus]
version = "0.18"
[dependencies.oatf]
version = "0.4"
features = ["cel-eval"]
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"stream",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.shlex]
version = "1.3"
[dependencies.strsim]
version = "0.11"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"json",
"env-filter",
]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.indexmap]
version = "2"
[dev-dependencies.proptest]
version = "1.10"
[dev-dependencies.tempfile]
version = "3.24"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[build-dependencies.built]
version = "0.8"
features = [
"git2",
"chrono",
]
[build-dependencies.oatf]
version = "0.4"
[lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(fuzzing)"]
[profile.dist]
lto = "thin"
inherits = "release"