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