-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdist-workspace.toml
More file actions
66 lines (64 loc) · 2.51 KB
/
Copy pathdist-workspace.toml
File metadata and controls
66 lines (64 loc) · 2.51 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
57
58
59
60
61
62
63
64
65
66
[workspace]
members = [ "cargo:." ]
# 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"
# Allow release.yml to drift from `dist generate-ci` output. Dependabot bumps
# action SHAs (e.g. actions/checkout) directly in release.yml; without this,
# `dist plan` fails its CI-consistency check and blocks releases. See the
# github-action-commits pins below, which are kept in sync with the repo.
allow-dirty = [ "ci" ]
# The installers to generate for each app
installers = [ "shell", "powershell", "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-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# A GitHub repo to push Homebrew formulas to
tap = "EvilBit-Labs/homebrew-tap"
# Customize the Homebrew formula name
formula = "stringy"
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Publish jobs to run in CI
publish-jobs = [ "homebrew" ]
# Whether to install an updater program
install-updater = false
# Generate and dist a source tarball
source-tarball = false
# 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
# Custom message to display on successful install
install-success-msg = "Successfully installed Stringy! Ready to start looking at your binaries!"
# GitHub release configuration
[dist.github]
repository = "EvilBit-Labs/Stringy"
[dist.github-action-commits]
"actions/checkout" = "df4cb1c069e1874edd31b4311f1884172cec0e10"
"actions/download-artifact" = "3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c"
"actions/upload-artifact" = "043fb46d1a93c77aae656e7c1c64a875d1fc6a0a"
"actions/attest" = "59d89421af93a897026c735860bf21b6eb4f7b26"