-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdist-workspace.toml
More file actions
22 lines (21 loc) · 1.06 KB
/
Copy pathdist-workspace.toml
File metadata and controls
22 lines (21 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[workspace]
members = ["cargo:app/src-tauri"]
# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.32.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"]
# SLSA build provenance on every release artifact, keyless via GitHub's native
# attestation (no cosign keys on the user's box; ADR-0023). Verifiable with
# `gh attestation verify <file> --repo albertdobmeyer/opentrapp`.
github-attestations = true
# The generated release.yml is hand-hardened to SHA-pin every third-party action
# (this repo's posture; the workflow runs privileged — attestations/id-token: write).
# allow-dirty tells dist not to fight those edits on `dist generate`/`plan`.
# RELEASING.md documents re-applying the pins after any dist upgrade.
allow-dirty = ["ci"]