-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 955 Bytes
/
Cargo.toml
File metadata and controls
45 lines (37 loc) · 955 Bytes
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
[package]
name = "styrolite"
description = "Lightweight, programmatic sandboxing tool"
license = "Apache-2.0"
version = "0.3.1"
homepage = "https://github.com/edera-dev/styrolite"
repository = "https://github.com/edera-dev/styrolite"
edition = "2024"
[dependencies]
anyhow = "1.0.102"
clap = { version = "4.6.0", features = ["derive"] }
env_logger = "0.11.8"
libc = "0.2.183"
log = "0.4.29"
mktemp-rs = "0.2.0"
nix = { version = "0.31.2", features = ["event", "process", "signal", "user"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.50.0", optional = true }
[dev-dependencies]
tempfile = "3"
[features]
async = ["dep:tokio"]
[lib]
name = "styrolite"
[[bin]]
name = "styrolite"
path = "bin/styrolite.rs"
[[bin]]
name = "styrojail"
path = "bin/styrojail.rs"
[[example]]
name = "styrolite-rundir"
path = "examples/rundir.rs"
[[example]]
name = "styrolite-attach"
path = "examples/attach.rs"