git-stk 0.7.0

Git-native stacked branch workflow helper
Documentation
[workspace]
members = ["cargo:."]

# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.31.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell"]
# 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", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Where to host releases
hosting = "github"
# Publish to crates.io after the release builds succeed, via the custom
# reusable workflow in .github/workflows/publish-crates.yml (needs the
# CARGO_REGISTRY_TOKEN repo secret)
publish-jobs = ["./publish-crates"]
# Whether to install an updater program
install-updater = false
# Printed by the shell/powershell installers after a successful install
install-success-msg = "git-stk installed! Run `git stk setup` to install the man page and shell completions."

[dist.binaries]
aarch64-apple-darwin = ["git-stk"]
aarch64-unknown-linux-gnu = ["git-stk"]
x86_64-apple-darwin = ["git-stk"]
x86_64-unknown-linux-gnu = ["git-stk"]
x86_64-pc-windows-msvc = ["git-stk"]