• 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"] }
17zerocopy = "*"
18static_assertions = "*"
19
20[target.'cfg(unix)'.dependencies]
21minijail = "*"
22
23[build-dependencies]
24which = "4"
25
26[dev-dependencies]
27cfg-if = "*"
28