Skip to content

Commit

Permalink
Re-ran cargo dist init with less targets, and use .tar.gz everywhere
Browse files Browse the repository at this point in the history
(limitation for the npm stuff)
  • Loading branch information
dmerejkowsky committed Feb 23, 2024
1 parent 36e204f commit 2270eac
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,12 @@ cargo-dist-version = "0.11.0"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = [
"npm",
]
installers = ["npm"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc"
]
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "skip"
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".tar.gz"
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.gz"

0 comments on commit 2270eac

Please sign in to comment.