Files
steel-dev__cli/dist-workspace.toml
junhsss b4d4c0910e feat: rust migration (#41)
* feat: initial

* test: dynamic command retrieval

* feat: profiles

* feat: agent-browser integration

* feat: flag parity

* ci: distribution

* fix: profile parameters

* feat: cleanup

* feat: forge

* feat: profiles again

* feat: more cleanup

* chore: more cleanup

* fix: short flag conflict

* test: more tests

* test: more compat test

* test: even more tests
2026-03-17 22:10:27 +09:00

29 lines
942 B
TOML

[workspace]
members = ["cargo:."]
# Config for 'dist'
[dist]
# Path that installers should place binaries in
install-path = "~/.steel/bin"
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.30.3"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "aarch64-unknown-linux-gnu"]
# Which actions to run on pull requests
pr-run-mode = "plan"
# The archive format to use for builds
unix-archive = ".tar.gz"
# Whether to enable GitHub Attestations
github-attestations = true
# Allow CI files to differ from what dist would generate (e.g. dependabot bumps)
allow-dirty = ["ci"]
[dist.github-custom-runners]
aarch64-apple-darwin = "macos-14"
x86_64-unknown-linux-gnu = "ubuntu-22.04"
aarch64-unknown-linux-gnu = "ubuntu-22.04-arm"