28 lines
455 B
TOML
28 lines
455 B
TOML
[package]
|
|
name = "jail"
|
|
version = "0.1.0"
|
|
authors = ["The ChromiumOS Authors"]
|
|
edition = "2021"
|
|
|
|
[features]
|
|
seccomp_trace = []
|
|
|
|
[dependencies]
|
|
anyhow = "*"
|
|
base = { path = "../base" }
|
|
libc = "*"
|
|
once_cell = "*"
|
|
serde = "*"
|
|
serde_keyvalue = { path = "../serde_keyvalue", features = ["argh_derive"] }
|
|
zerocopy = "*"
|
|
static_assertions = "*"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
minijail = "*"
|
|
|
|
[build-dependencies]
|
|
which = "4"
|
|
|
|
[dev-dependencies]
|
|
cfg-if = "*"
|