• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "jail"
3version = "0.1.0"
4authors = ["The ChromiumOS Authors"]
5edition = "2021"
6
7[features]
8seccomp_trace = []
9
10[dependencies]
11anyhow = "*"
12base = { path = "../base" }
13libc = "*"
14once_cell = "*"
15serde = "*"
16serde_keyvalue = { path = "../serde_keyvalue", features = ["argh_derive"] }
17static_assertions = "*"
18zerocopy = { version = "0.7", features = ["derive"] }
19
20[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
21minijail = "*"
22
23[build-dependencies]
24which = "4"
25rayon = "1.5.3"
26
27[dev-dependencies]
28cfg-if = "*"
29