[package]
edition = "2021"
rust-version = "1.93"
name = "clawdstrike"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Security guards and policy engine for AI agent execution"
readme = "README.md"
keywords = [
"security",
"ai-agent",
"policy",
"clawdstrike",
]
categories = [
"authentication",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/backbay-labs/clawdstrike"
[features]
default = []
ipfs = []
llm-judge-openai = []
wasm-plugin-runtime = ["dep:wasmtime"]
[lib]
name = "clawdstrike"
path = "src/lib.rs"
[[bin]]
name = "marketplace_feed_gen"
path = "src/bin/marketplace_feed_gen.rs"
[[bin]]
name = "prompt_security_scan"
path = "src/bin/prompt_security_scan.rs"
[[bin]]
name = "prompt_watermark"
path = "src/bin/prompt_watermark.rs"
[[test]]
name = "async_guard_runtime"
path = "tests/async_guard_runtime.rs"
[[test]]
name = "compliance_templates"
path = "tests/compliance_templates.rs"
[[test]]
name = "policy_extends"
path = "tests/policy_extends.rs"
[[test]]
name = "proptest_guards"
path = "tests/proptest_guards.rs"
[[test]]
name = "security_regressions"
path = "tests/security_regressions.rs"
[[test]]
name = "threat_intel_guards"
path = "tests/threat_intel_guards.rs"
[[bench]]
name = "engine"
path = "benches/engine.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "6.1"
[dependencies.dirs]
version = "6.0"
[dependencies.futures]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.globset]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.hush-core]
version = "0.1.0"
[dependencies.hush-proxy]
version = "0.1.0"
[dependencies.regex]
version = "1.12"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"rustls",
"multipart",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.spine]
version = "0.1.0"
package = "hush-spine"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.uuid]
version = "1.20"
features = [
"v4",
"v7",
"serde",
"js",
"v4",
]
[dependencies.wasmtime]
version = "41.0.3"
features = [
"runtime",
"cranelift",
"std",
]
optional = true
default-features = false
[dev-dependencies.axum]
version = "0.8"
features = ["macros"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.10"
[dev-dependencies.tempfile]
version = "3.25"
[dev-dependencies.tokio]
version = "1.49"
features = [
"full",
"rt-multi-thread",
"macros",
]
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.wat]
version = "1.241.2"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"