This repository has been archived by the owner on May 5, 2024. It is now read-only.
chore(deps): update rust crate cc to v1.0.96 #112
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.0.79
->1.0.96
Release Notes
rust-lang/cc-rs (cc)
v1.0.96
Compare Source
What's Changed
New Contributors
Full Changelog: rust-lang/cc-rs@1.0.95...1.0.96
v1.0.95
Compare Source
What's Changed
try_acquire
by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/1037Full Changelog: rust-lang/cc-rs@1.0.94...1.0.95
v1.0.94
Compare Source
What's Changed
New Contributors
Full Changelog: rust-lang/cc-rs@1.0.93...1.0.94
v1.0.93
Compare Source
What's Changed
Full Changelog: rust-lang/cc-rs@1.0.92...1.0.93
v1.0.92
Compare Source
What's Changed
Full Changelog: rust-lang/cc-rs@1.0.91...1.0.92
v1.0.91
Compare Source
What's Changed
$compiler -v
by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/1000New Contributors
Full Changelog: rust-lang/cc-rs@1.0.90...1.0.91
v1.0.90
Compare Source
What's Changed
--target
when targeting Android on non-Windows platforms by @dpaoliello in https://github.com/rust-lang/cc-rs/pull/991New Contributors
Full Changelog: rust-lang/cc-rs@1.0.89...1.0.90
v1.0.89
Compare Source
What's Changed
New Contributors
Full Changelog: rust-lang/cc-rs@1.0.88...1.0.89
v1.0.88
Compare Source
What's Changed
/System/iOSSupport
to header/library search paths on Mac Catalyst by @madsmtm in https://github.com/rust-lang/cc-rs/pull/961New Contributors
Full Changelog: rust-lang/cc-rs@1.0.87...1.0.88
v1.0.87
Compare Source
What's Changed
println
s by @amaanq in https://github.com/rust-lang/cc-rs/pull/960New Contributors
Full Changelog: rust-lang/cc-rs@1.0.86...1.0.87
v1.0.86
Compare Source
What's Changed
--jobserver-auth
wins by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/949New Contributors
Full Changelog: rust-lang/cc-rs@1.0.85...1.0.86
v1.0.85
Compare Source
What's Changed
--
for files intry_expand
(like in #514) by @pashokitsme in https://github.com/rust-lang/cc-rs/pull/911cargo_warnings
config to control the use of the cargo warning instruction by @scootermon in https://github.com/rust-lang/cc-rs/pull/917New Contributors
Full Changelog: rust-lang/cc-rs@1.0.84...1.0.85
v1.0.84
Compare Source
Changes
This isn't a complete list, but I've tried to cover everything that is either significant, or could cause problems for people using
cc
in configurations not covered by our tests.feature = parallel
), which should be more efficient. (https://github.com/rust-lang/cc-rs/pull/889).armasm[64].exe
(https://github.com/rust-lang/cc-rs/pull/867, https://github.com/rust-lang/cc-rs/pull/868, https://github.com/rust-lang/cc-rs/pull/869, https://github.com/rust-lang/cc-rs/pull/857)is_flag_supported
(https://github.com/rust-lang/cc-rs/pull/839, https://github.com/rust-lang/cc-rs/pull/886)*-apple-tvos
and*-apple-tvos-sim
targets (https://github.com/rust-lang/cc-rs/pull/881, https://github.com/rust-lang/cc-rs/pull/704)rustc --print deployment-target
when available (https://github.com/rust-lang/cc-rs/pull/848, https://github.com/rust-lang/cc-rs/pull/872)remove_flag
function to remove flags which have been added withadd_flag
(https://github.com/rust-lang/cc-rs/pull/885)-m32
/-mx32
/-m64
flags are passed (https://github.com/rust-lang/cc-rs/pull/709)-isysroot
is passed on Apple targets (https://github.com/rust-lang/cc-rs/pull/703) and how MSVC version is detected on Windows (https://github.com/rust-lang/cc-rs/pull/696).As always, please file bugs if you hit issues.
cc
is used in many more ways than we can possibly test (especially when cross-compiling or using tier-3 platforms).Thanks.
New Contributors
Full Changelog: rust-lang/cc-rs@1.0.83...1.0.84
v1.0.83
Compare Source
What's Changed
New Contributors
Full Changelog: rust-lang/cc-rs@1.0.82...1.0.83
v1.0.82
Compare Source
This release corrects a deadlock and potential performance regression present since 1.0.80, and contains no other changes. See https://github.com/rust-lang/cc-rs/pull/849 for details.
v1.0.81
Compare Source
This release exists to fix a bug introduced in 1.0.80 where we would panic if non-UTF8 were written to stderr by the C compiler. See https://github.com/rust-lang/cc-rs/pull/842 and https://github.com/rust-lang/cc-rs/issues/841 for more info.
v1.0.80
Compare Source
What's Changed
windows_registry::VsVers
non_exhaustive by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/783Build::clone
: UseArc
instead ofString
/PathBuf
/OsString
by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/782freebsd-version
to all --target=*-freebsd if executed on FreeBSD. by @dot-asm in https://github.com/rust-lang/cc-rs/pull/788get_xxx()
call by @mqudsi in https://github.com/rust-lang/cc-rs/pull/793Build::compile_objects
: Only spawns one thread by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/780os_pipe
with direct implementation by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/822Build::print
: Avoid unnecessary heap alloc by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/824Error::new
: Avoid unnecessary heap alloc by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/823cc::Build::try_compile
: ReusePrintThread
by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/817Build::compile_objects
deadlock on parallel by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/829Build::get_out_dir
: ReturnCow<'_, Path>
by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/831Build::env_cache
: StoreOption<Arc<str>>
as key by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/832Build::compile_objects
on feature parallel by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/833windows-sys
dependency with bindings generation by @NobodyXu in https://github.com/rust-lang/cc-rs/pull/837x86_64h-apple-darwin
target by @thomcc in https://github.com/rust-lang/cc-rs/pull/840New Contributors
Full Changelog: rust-lang/cc-rs@1.0.79...1.0.80
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.