mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-24 14:28:42 +00:00
dep: Bump hickory-resolver to 0.25.0-alpha.2 (#1869)
* dep: Bump hickory-resolver to 0.25.0-alpha.2 Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> * Remove workaround for ring 0.16 on aarc64-pc-windows-msvc Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com> --------- Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
b854f3f52c
commit
96f5445e52
3 changed files with 78 additions and 281 deletions
6
justfile
6
justfile
|
@ -112,10 +112,6 @@ cargo-features := trim_end_match(if override-features != "" { override-features
|
|||
# errors with: "Found a record with an unknown abbreviation code"
|
||||
cargo-split-debuginfo := if cargo-buildstd != "" { " --config='profile.release.split-debuginfo=\"packed\"' --config=profile.release.debug=2" } else { "" }
|
||||
|
||||
# for ARM64 Windows, use a patched version of ring
|
||||
# this should be unnecessary once ring 0.17 is released
|
||||
win-arm64-ring16 := if target == "aarch64-pc-windows-msvc" { " --config='patch.crates-io.ring.git=\"https://github.com/awakecoding/ring\"' --config='patch.crates-io.ring.branch=\"0.16.20_alpha\"'" } else { "" }
|
||||
|
||||
# MIR optimisation level (defaults to 2, bring it up to 4 for release builds)
|
||||
# **DISABLED because it's buggy**
|
||||
rustc-miropt := "" # if for-release != "" { " -Z mir-opt-level=4" } else { "" }
|
||||
|
@ -175,7 +171,7 @@ target-glibc-ver-postfix := if glibc-version != "" {
|
|||
""
|
||||
}
|
||||
|
||||
cargo-check-args := (" --target ") + (target) + (target-glibc-ver-postfix) + (cargo-buildstd) + (if extra-build-args != "" { " " + extra-build-args } else { "" }) + (cargo-split-debuginfo) + (win-arm64-ring16)
|
||||
cargo-check-args := (" --target ") + (target) + (target-glibc-ver-postfix) + (cargo-buildstd) + (if extra-build-args != "" { " " + extra-build-args } else { "" }) + (cargo-split-debuginfo)
|
||||
cargo-build-args := (if for-release != "" { " --release" } else { "" }) + (cargo-check-args) + (cargo-no-default-features) + (if cargo-features != "" { " --features " + cargo-features } else { "" }) + (if timings != "" { " --timings" } else { "" })
|
||||
export RUSTFLAGS := (linker-plugin-lto) + (rustc-gcclibs) + (rustc-miropt) + (rust-lld) + (rustc-icf) + (if enable-h3 != "" { " --cfg reqwest_unstable" } else { "" })
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue