[package]
edition = "2024"
rust-version = "1.85"
name = "landstrip"
version = "0.9.2"
authors = ["Jarkko Sakkinen <jarkko.sakkinen@iki.fi>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sandbox for coding agents with parametrized state"
homepage = "https://github.com/jarkkojs/landstrip"
readme = "README.md"
license = "LGPL-2.1-or-later"
repository = "https://github.com/jarkkojs/landstrip"
[[bin]]
name = "landstrip"
path = "src/main.rs"
[[test]]
name = "sandbox"
path = "tests/sandbox.rs"
[dependencies.argh]
version = "0.1.19"
[dependencies.dirs]
version = "6.0.0"
[dependencies.env_logger]
version = "0.11.10"
[dependencies.libc]
version = "0.2"
[dependencies.log]
version = "0.4.30"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.strum]
version = "0.28"
[dependencies.strum_macros]
version = "0.28"
[dev-dependencies.duct]
version = "1.1.1"
[target.'cfg(target_os = "linux")'.dependencies.landlock]
version = "0.4"
[target.'cfg(target_os = "linux")'.dependencies.nix]
version = "0.30"
features = [
"fs",
"ioctl",
"poll",
"process",
"socket",
"uio",
]
[target.'cfg(target_os = "linux")'.dependencies.seccompiler]
version = "0.5"
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
version = "0.60"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Security_Isolation",
"Win32_Storage_FileSystem",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
]