-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathdist-workspace.toml
More file actions
33 lines (32 loc) · 1.49 KB
/
dist-workspace.toml
File metadata and controls
33 lines (32 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[workspace]
members = ["cargo:."]
# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.30.2"
# CI backends to support
ci = "github"
# The installers to generate for each app
# Note: The shell/powershell scripts attempt to add the install directory to PATH by
# modifying shell config files (.profile, .bashrc, etc.), which can cause "Permission
# denied" errors on non-standard setups. This is cargo-dist's default behavior and
# reasonable for most users. Users with custom shell configs can set
# WORKTRUNK_NO_MODIFY_PATH=1 or use Homebrew/cargo install instead.
# See: https://github.com/max-sixty/worktrunk/issues/590
installers = ["shell", "powershell", "homebrew"]
# Homebrew tap repository
tap = "max-sixty/homebrew-worktrunk"
# Homebrew formula name (defaults to package name)
formula = "wt"
# Jobs that publish to external services
publish-jobs = ["homebrew"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "aarch64-unknown-linux-musl", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Whether to install an updater program
install-updater = false
# Allow custom CI modifications (we have custom publish jobs for cargo, winget)
allow-dirty = ["ci"]
# Enable git-wt binary in release builds (opt-in for cargo install)
features = ["git-wt"]
# Custom success message prompting shell integration
install-success-msg = "Run 'wt config shell install' for shell integration."