Co-authored-by: Nilton Constantino <nilton.constantino@visma.com> Reviewed-on: #5
19 lines
556 B
TOML
19 lines
556 B
TOML
[workspace]
|
|
members = ["cargo:."]
|
|
|
|
# Config for 'dist'
|
|
[dist]
|
|
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
|
|
cargo-dist-version = "0.30.3"
|
|
# CI backends to support
|
|
ci = "github"
|
|
# The installers to generate for each app
|
|
installers = []
|
|
# Target platforms to build apps for (Rust target-triple syntax)
|
|
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin"]
|
|
# The archive format to use for non-windows builds (defaults .tar.xz)
|
|
unix-archive = ".zip"
|
|
macos-universal-binaries = true
|
|
[dist.hooks]
|
|
pre-build = ["./scripts/pre-dist.sh"]
|