[package]
edition = "2024"
rust-version = "1.85"
name = "agent-locker"
version = "0.1.0-alpha.2"
authors = ["Jason Ish <jason@codemonkey.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A sandbox for running coding agents with restricted filesystem access."
homepage = "https://github.com/jasonish/agent-locker"
readme = "README.md"
keywords = [
"sandbox",
"landlock",
"agent",
"security",
"isolation",
]
categories = [
"command-line-utilities",
"os::linux-apis",
]
license = "MIT"
repository = "https://github.com/jasonish/agent-locker"
[package.metadata.docs.rs]
targets = []
[[bin]]
name = "agent-locker"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.inquire]
version = "0.9"
[dependencies.libc]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "0.8"