-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdist-workspace.toml
More file actions
56 lines (54 loc) · 1.92 KB
/
dist-workspace.toml
File metadata and controls
56 lines (54 loc) · 1.92 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[workspace]
members = [ "cargo:." ]
# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.31.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = [ "shell", "homebrew" ]
# Target platforms to build apps for (Rust target-triple syntax)
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",
]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
# Generate and dist a source tarball
source-tarball = true
# Whether to enable GitHub Attestations
github-attestations = true
# Which phase dist should use to create the GitHub release
github-release = "auto"
# Whether to display this app's installers/artifacts in release bodies
display = true
# Whether dist should create a Github Release or use an existing draft
create-release = true
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.xz"
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".zip"
# Whether +crt-static should be used on msvc
msvc-crt-static = true
# Whether to embed dependency information using cargo-auditable
cargo-auditable = true
# Whether to use cargo-cyclonedx to generate an SBOM
cargo-cyclonedx = true
# A GitHub repo to push Homebrew formulas to
tap = "EvilBit-Labs/homebrew-tap"
# Publish jobs to run in CI
publish-jobs = [ "homebrew" ]
# GitHub release configuration
[dist.github-action-commits]
"actions/checkout" = "v6.0.2"
"actions/download-artifact" = "3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
"actions/attest-build-provenance" = "a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32"
"actions/upload-artifact" = "v7.0.0"