@@ -3,6 +3,8 @@ members = ["cargo:."]
33
44# Config for 'dist'
55[dist ]
6+ # Skip checking whether the specified configuration files are up to date
7+ allow-dirty = [" ci" ]
68# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
79cargo-dist-version = " 0.31.0"
810# CI backends to support
@@ -11,21 +13,20 @@ ci = "github"
1113create-release = true
1214# Which actions to run on pull requests
1315pr-run-mode = " plan"
14- # Skip checking whether the specified configuration files are up to date
15- allow-dirty = [" ci" ]
1616ssldotcom-windows-sign = " test"
1717# The installers to generate for each app
1818installers = [" shell" , " powershell" , " homebrew" ]
1919homepage = " https://github.com/braintrustdata/bt"
2020# Target platforms to build apps for (Rust target-triple syntax)
21- targets = [" aarch64-apple-darwin" , " aarch64-unknown-linux-gnu" , " x86_64-apple-darwin" , " x86_64-unknown-linux-gnu" , " x86_64-unknown-linux-musl" , " x86_64-pc-windows-msvc" ]
21+ targets = [" aarch64-apple-darwin" , " aarch64-unknown-linux-gnu" , " aarch64-pc-windows-msvc" , " x86_64-apple-darwin" , " x86_64-unknown-linux-gnu" , " x86_64-unknown-linux-musl" , " x86_64-pc-windows-msvc" ]
22+ # Path that installers should place binaries in
23+ install-path = [" $XDG_BIN_HOME/" , " $XDG_DATA_HOME/../bin" , " ~/.local/bin" ]
24+
25+ [dist .github-custom-runners ]
26+ aarch64-pc-windows-msvc = " windows-11-arm"
2227# The archive format to use for non-windows builds (defaults .tar.xz)
2328unix-archive = " .tar.gz"
2429# The archive format to use for windows builds (defaults .zip)
2530windows-archive = " .zip"
26- # Path that installers should place binaries in
27- install-path = [" $XDG_BIN_HOME/" , " $XDG_DATA_HOME/../bin" , " ~/.local/bin" ]
28- # Whether to install an updater program
29- install-updater = true
3031# Custom message to display on successful install
3132install-success-msg = " "
0 commit comments