28 lines
620 B
TOML
28 lines
620 B
TOML
[package]
|
|
name = "x2t-sandbox"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
"x2t-sandbox-rulegen"
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
clap = { version = "4.4.7", features = ["derive"] }
|
|
env_logger = "0.10.0"
|
|
libseccomp = "0.3.0"
|
|
log = "0.4.20"
|
|
nix = { version = "0.27.1", features = [ "process", "ptrace", "signal", "fs" ] }
|
|
x2t-sandbox-rulegen = { path = "./x2t-sandbox-rulegen" }
|
|
|
|
[build-dependencies]
|
|
anyhow = "1.0.75"
|
|
pkg-config = "0.3.27"
|
|
|
|
[features]
|
|
tracing-mode = ["x2t-sandbox-rulegen/no-fail"]
|