This introduces a standalone executable that run the equivalent of the `codex debug landlock` subcommand and updates `rust-release.yml` to include it in the release. The idea is that we will include this small binary with the TypeScript CLI to provide support for Linux sandboxing.
22 lines
378 B
TOML
22 lines
378 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"ansi-escape",
|
|
"apply-patch",
|
|
"cli",
|
|
"core",
|
|
"exec",
|
|
"execpolicy",
|
|
"repl",
|
|
"tui",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
# Because we bundle some of these executables with the TypeScript CLI, we
|
|
# remove everything to make the binary as small as possible.
|
|
strip = "symbols"
|