Compare commits

..

No commits in common. "main" and "binstalk-fetchers-v0.10.18" have entirely different histories.

7 changed files with 257 additions and 309 deletions

View file

@ -53,7 +53,7 @@ jobs:
- name: Get changed files - name: Get changed files
id: changed-files id: changed-files
uses: tj-actions/changed-files@6f67ee9ac810f0192ea7b3d2086406f97847bcf9 uses: tj-actions/changed-files@0b975f61488402a699abcebd6a1e25924cf85218
with: with:
dir_names: true dir_names: true
dir_names_exclude_current_dir: true dir_names_exclude_current_dir: true

View file

@ -59,6 +59,7 @@ jobs:
GLIBC_VERSION: ${{ matrix.g }} GLIBC_VERSION: ${{ matrix.g }}
JUST_USE_CARGO_ZIGBUILD: ${{ matrix.c }} JUST_USE_CARGO_ZIGBUILD: ${{ matrix.c }}
JUST_FOR_RELEASE: true JUST_FOR_RELEASE: true
JUST_USE_AUDITABLE: true
JUST_ENABLE_H3: true JUST_ENABLE_H3: true
steps: steps:
@ -76,7 +77,7 @@ jobs:
- uses: ./.github/actions/just-setup - uses: ./.github/actions/just-setup
with: with:
tools: rsign2,rage tools: cargo-auditable,rsign2,rage
env: env:
# just-setup use binstall to install sccache, # just-setup use binstall to install sccache,
# which works better when we provide it with GITHUB_TOKEN. # which works better when we provide it with GITHUB_TOKEN.

550
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -3,7 +3,7 @@ name = "cargo-binstall"
description = "Binary installation for rust projects" description = "Binary installation for rust projects"
repository = "https://github.com/cargo-bins/cargo-binstall" repository = "https://github.com/cargo-bins/cargo-binstall"
documentation = "https://docs.rs/cargo-binstall" documentation = "https://docs.rs/cargo-binstall"
version = "1.12.3" version = "1.12.2"
rust-version = "1.79.0" rust-version = "1.79.0"
authors = ["ryan <ryan@kurte.nz>"] authors = ["ryan <ryan@kurte.nz>"]
edition = "2021" edition = "2021"

View file

@ -3,7 +3,7 @@
<assemblyIdentity <assemblyIdentity
type="win32" type="win32"
name="Binstall.Cli.binstall" name="Binstall.Cli.binstall"
version="1.12.3.0" version="1.12.2.0"
/> />
<trustInfo> <trustInfo>

View file

@ -115,12 +115,13 @@ rust-lld := "" #if use-cargo-zigbuild != "" {
# ICF: link-time identical code folding # ICF: link-time identical code folding
# #
# On windows it works out of the box. # On windows it works out of the box and on linux it uses
# rust-lld.
rustc-icf := if for-release != "" { rustc-icf := if for-release != "" {
if target-os == "windows" { if target-os == "windows" {
" -C link-arg=-Wl,--icf=safe" " -C link-arg=-Wl,--icf=safe"
} else if target-os == "linux" { } else if target-os == "linux" {
"" " -C link-arg=-Wl,--icf=safe"
} else { } else {
"" ""
} }

View file

@ -2,4 +2,4 @@
cargo-zigbuild cargo-zigbuild
###### Requirements with Version Specifiers ###### ###### Requirements with Version Specifiers ######
ziglang ziglang < 0.11 # zig 0.11 causes link failure in our CI