dist-workspace.toml 829 B raw
1
[workspace]
2
members = ["cargo:."]
3
4
[workspace.metadata.dist]
5
allow-dirty = ["ci"]
6
7
# Config for 'dist'
8
[dist]
9
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
10
cargo-dist-version = "0.28.0"
11
# CI backends to support
12
ci = "github"
13
# The installers to generate for each app
14
installers = ["shell", "powershell", "homebrew"]
15
# A GitHub repo to push Homebrew formulas to
16
tap = "stevedylandev/homebrew-walletfetch"
17
# Target platforms to build apps for (Rust target-triple syntax)
18
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
19
# Path that installers should place binaries in
20
install-path = "CARGO_HOME"
21
# Publish jobs to run in CI
22
publish-jobs = ["homebrew"]
23
# Whether to install an updater program
24
install-updater = false