[package]
edition = "2021"
rust-version = "1.93"
name = "chio-guards"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Security guards for the Chio runtime kernel, adapted from ClawdStrike"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/backbay/chio"
[lib]
name = "chio_guards"
path = "src/lib.rs"
[[test]]
name = "behavioral_profile"
path = "tests/behavioral_profile.rs"
[[test]]
name = "browser_automation"
path = "tests/browser_automation.rs"
[[test]]
name = "code_execution"
path = "tests/code_execution.rs"
[[test]]
name = "content_review"
path = "tests/content_review.rs"
[[test]]
name = "cua_guards"
path = "tests/cua_guards.rs"
[[test]]
name = "external_guard_adapter"
path = "tests/external_guard_adapter.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "jailbreak"
path = "tests/jailbreak.rs"
[[test]]
name = "memory_governance"
path = "tests/memory_governance.rs"
[[test]]
name = "output_sanitization"
path = "tests/output_sanitization.rs"
[[test]]
name = "prompt_injection"
path = "tests/prompt_injection.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chio-core]
version = "0.1.0"
[dependencies.chio-core-types]
version = "0.1.0"
[dependencies.chio-http-session]
version = "0.1.0"
[dependencies.chio-kernel]
version = "0.1.0"
[dependencies.glob]
version = "0.3"
[dependencies.lru]
version = "0.16.3"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.zeroize]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"