1[package] 2name = "jail" 3version = "0.1.0" 4authors = ["The ChromiumOS Authors"] 5edition = "2021" 6 7# The process tests will use fork, which requires a custom test harness to enforce single threaded 8# execution. 9[[test]] 10name = "fork" 11path = "tests/fork.rs" 12harness = false 13 14[features] 15seccomp_trace = [] 16 17[dependencies] 18anyhow = "1" 19base = { path = "../base" } 20libc = "0.2" 21log = "0.4" 22once_cell = "1.7" 23serde = "1" 24serde_keyvalue = { path = "../serde_keyvalue", features = ["argh_derive"] } 25static_assertions = "1.1" 26zerocopy = { version = "0.8.13", features = ["derive"] } 27 28[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies] 29minijail = "*" 30 31[build-dependencies] 32which = "4" 33rayon = "1.5.3" 34 35[dev-dependencies] 36cfg-if = "1" 37libtest-mimic = "0.6" 38