[package]
edition = "2024"
rust-version = "1.85"
name = "landstrip"
version = "0.16.21"
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/landstrip/landstrip"
readme = "README.md"
license = "LGPL-2.1-or-later"
repository = "https://github.com/landstrip/landstrip"
[[bin]]
name = "landstrip"
path = "src/main.rs"
[[test]]
name = "data"
path = "tests/data.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[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.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yml]
version = "0.0.13"
[dependencies.strum]
version = "0.28"
[dependencies.strum_macros]
version = "0.28"
[target.'cfg(target_os = "linux")'.dependencies.landlock]
version = "0.4"
[target.'cfg(target_os = "linux")'.dependencies.nix]
version = "0.31"
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.61"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Security_Authorization",
"Win32_Security_Isolation",
"Win32_Storage_FileSystem",
"Win32_System_JobObjects",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
]