[package]
edition = "2021"
rust-version = "1.75"
name = "agent-guard"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Linux control plane for AI agent security — trait surface and receipt types for BPF LSM, cgroup v2, Landlock, and seccomp sandboxing"
homepage = "https://github.com/RecursiveIntell/Libraries/agent-guard"
readme = "README.md"
keywords = [
"security",
"sandbox",
"agent",
"linux",
"landlock",
]
categories = [
"os::linux-apis",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/RecursiveIntell/Libraries"
[features]
default = []
mcp = ["dep:tokio"]
[lib]
name = "agent_guard"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[target.'cfg(not(target_os = "linux"))'.dependencies.tokio]
version = "1.0"
features = ["sync"]
optional = true