[package]
edition = "2024"
rust-version = "1.85"
name = "orchestrator-runner"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command runner, sandbox, output capture, and network allowlist"
readme = false
keywords = [
"orchestrator",
"runner",
"sandbox",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/c9r-io/orchestrator"
resolver = "2"
[lib]
name = "orchestrator_runner"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.orchestrator-config]
version = "0.3.0"
[dependencies.tokio]
version = "1.44"
features = [
"fs",
"io-util",
"macros",
"process",
"rt",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3.26.0"
[dev-dependencies.tokio]
version = "1.44"
features = [
"fs",
"io-util",
"macros",
"process",
"rt-multi-thread",
"sync",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(unix)".dependencies.nix]
version = "0.31"
features = ["user"]
default-features = false
[target."cfg(unix)".dependencies.uuid]
version = "1.11"
features = ["v4"]