mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-06 20:20:03 +00:00
Compare commits
7 commits
binstalk-m
...
main
Author | SHA1 | Date | |
---|---|---|---|
![]() |
20e9b25913 | ||
![]() |
38e42845bc | ||
![]() |
b4df017ff7 | ||
![]() |
a803508dbf | ||
![]() |
acc44cb207 | ||
![]() |
b288890787 | ||
![]() |
63aaa5c193 |
7 changed files with 309 additions and 257 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -53,7 +53,7 @@ jobs:
|
|||
|
||||
- name: Get changed files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@0b975f61488402a699abcebd6a1e25924cf85218
|
||||
uses: tj-actions/changed-files@6f67ee9ac810f0192ea7b3d2086406f97847bcf9
|
||||
with:
|
||||
dir_names: true
|
||||
dir_names_exclude_current_dir: true
|
||||
|
|
3
.github/workflows/release-packages.yml
vendored
3
.github/workflows/release-packages.yml
vendored
|
@ -59,7 +59,6 @@ jobs:
|
|||
GLIBC_VERSION: ${{ matrix.g }}
|
||||
JUST_USE_CARGO_ZIGBUILD: ${{ matrix.c }}
|
||||
JUST_FOR_RELEASE: true
|
||||
JUST_USE_AUDITABLE: true
|
||||
JUST_ENABLE_H3: true
|
||||
|
||||
steps:
|
||||
|
@ -77,7 +76,7 @@ jobs:
|
|||
|
||||
- uses: ./.github/actions/just-setup
|
||||
with:
|
||||
tools: cargo-auditable,rsign2,rage
|
||||
tools: rsign2,rage
|
||||
env:
|
||||
# just-setup use binstall to install sccache,
|
||||
# which works better when we provide it with GITHUB_TOKEN.
|
||||
|
|
550
Cargo.lock
generated
550
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@ name = "cargo-binstall"
|
|||
description = "Binary installation for rust projects"
|
||||
repository = "https://github.com/cargo-bins/cargo-binstall"
|
||||
documentation = "https://docs.rs/cargo-binstall"
|
||||
version = "1.12.2"
|
||||
version = "1.12.3"
|
||||
rust-version = "1.79.0"
|
||||
authors = ["ryan <ryan@kurte.nz>"]
|
||||
edition = "2021"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Binstall.Cli.binstall"
|
||||
version="1.12.2.0"
|
||||
version="1.12.3.0"
|
||||
/>
|
||||
|
||||
<trustInfo>
|
||||
|
|
5
justfile
5
justfile
|
@ -115,13 +115,12 @@ rust-lld := "" #if use-cargo-zigbuild != "" {
|
|||
|
||||
# ICF: link-time identical code folding
|
||||
#
|
||||
# On windows it works out of the box and on linux it uses
|
||||
# rust-lld.
|
||||
# On windows it works out of the box.
|
||||
rustc-icf := if for-release != "" {
|
||||
if target-os == "windows" {
|
||||
" -C link-arg=-Wl,--icf=safe"
|
||||
} else if target-os == "linux" {
|
||||
" -C link-arg=-Wl,--icf=safe"
|
||||
""
|
||||
} else {
|
||||
""
|
||||
}
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
cargo-zigbuild
|
||||
|
||||
###### Requirements with Version Specifiers ######
|
||||
ziglang < 0.11 # zig 0.11 causes link failure in our CI
|
||||
ziglang
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue