-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathCargo.toml
48 lines (39 loc) · 911 Bytes
/
Cargo.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "gaol"
version = "0.2.1"
authors = ["The Servo Project Developers"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/gaol"
repository = "https://github.com/servo/gaol"
description = "OS-level application sandboxing library."
edition = "2021"
[lib]
name = "gaol"
path = "lib.rs"
[dependencies]
libc = "0.2"
log = "0.4"
[dev-dependencies]
rand = "0.8"
[[test]]
name = "file-read-all"
path = "tests/file-read-all.rs"
harness = false
[[test]]
name = "file-read-metadata"
path = "tests/file-read-metadata.rs"
harness = false
[[test]]
name = "forbidden-syscalls"
path = "tests/forbidden-syscalls.rs"
harness = false
[[test]]
name = "network-outbound"
path = "tests/network-outbound.rs"
harness = false
[[test]]
name = "system-info-read"
path = "tests/system-info-read.rs"
harness = false
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(dump_bpf_sockets)'] }