cmdq 0.1.3

A PTY-hosted command queue: type the next command while one is still running.
Documentation
[workspace]
members = ["cargo:."]

# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.28.7"
# CI backends to support
ci = "github"
# The installers to generate for each app
# (no powershell: cmdq depends on `nix` and is Unix-only)
installers = ["shell", "homebrew"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Where to host releases
hosting = "github"
# Whether to install an updater program
install-updater = false
# We hand-edit release.yml to fix the publish-homebrew-formula auth bug
# (persist-credentials: false strips the token before `git push`). Without
# allow-dirty, `dist generate` would clobber that fix.
allow-dirty = ["ci"]
# Homebrew tap (separate repo) where the auto-generated formula is pushed
tap = "ParthJadhav/homebrew-tap"
# Publish jobs to run after release: pushes the formula to the tap above
publish-jobs = ["homebrew"]
# Override macOS runners: dist 0.28 still defaults to macos-13 which GitHub
# retired in Dec 2025. macos-latest (Apple Silicon) builds arm64 natively
# and cross-compiles x86_64 fine.
[dist.github-custom-runners]
aarch64-apple-darwin = "macos-latest"
x86_64-apple-darwin = "macos-latest"