20 lines
373 B
TOML
20 lines
373 B
TOML
[package]
|
|
name = "yoke"
|
|
version = "0.1.0"
|
|
authors = [ "atagen" ]
|
|
description = "A simple sandboxing tool, similar to bwrap"
|
|
repository = "https://git.atagen.co/atagen/yoke"
|
|
license = "GPL-3.0-or-later"
|
|
edition = "2024"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
opt-level = "s"
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.100"
|
|
exec = "0.3.1"
|
|
gumdrop = "0.8.1"
|
|
landlock = "0.4.3"
|
|
|