yoke/Cargo.toml
2025-11-03 16:41:38 +11:00

26 lines
571 B
TOML

[package]
name = "yoke"
version = "0.1.0"
authors = [ "atagen" ]
description = "CLI sandboxing tool similar to landrun or bwrap"
repository = "https://git.atagen.co/atagen/yoke"
license = "GPL-3.0-or-later"
edition = "2024"
[features]
default = []
ldd = ["dep:elb-dl"]
which = ["dep:which"]
[profile.release]
strip = true
opt-level = "s"
codegen-units = 1
[dependencies]
anyhow = "1.0.100"
landlock = "0.4.3"
exec = "0.3.1"
elb-dl = { version = "0.3.2", features = ["glibc"], default-features = false, optional = true }
which = { version = "8.0.0", optional = true }