Taking a pass at building artifacts per platform so we can consider different distribution strategies that don't require users to install the full `cargo` toolchain. Right now this grabs just the `codex-repl` and `codex-tui` bins for 5 different targets and bundles them into a draft release. I think a clearly marked pre-release set of artifacts will unblock the next step of testing.
18 lines
224 B
TOML
18 lines
224 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" |