-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 821 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 821 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
[package]
name = "reloaded-code-bubblewrap"
version = "0.1.0"
edition = "2021"
description = "Linux bubblewrap sandbox profiles, probing, and execution for ReloadedCode"
repository = "https://github.com/Reloaded-Project/ReloadedCode"
license = "Apache-2.0"
include = ["src/**/*", "README.md"]
readme = "README.md"
[features]
default = ["tokio"]
tokio = ["dep:process-wrap", "process-wrap/tokio1", "process-wrap/process-group"]
blocking = ["dep:process-wrap", "process-wrap/std", "process-wrap/process-group"]
[dependencies]
parking_lot = { workspace = true }
thiserror = { workspace = true }
process-wrap = { workspace = true, optional = true }
tempfile = { workspace = true }
[dev-dependencies]
rstest = { workspace = true }
serial_test = { workspace = true }
tokio = { workspace = true, features = ["rt", "macros"] }