aboutsummaryrefslogtreecommitdiff
path: root/jail/Cargo.toml
blob: 6b1353f2524a4320ca75b4d5f3ea5ef25359e339 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[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"] }
static_assertions = "*"
zerocopy = { version = "0.7", features = ["derive"] }

[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
minijail = "*"

[build-dependencies]
which = "4"
rayon = "1.5.3"

[dev-dependencies]
cfg-if = "*"