Skip to content

Commit fcb5217

Browse files
renovate[bot]epage
andauthored
chore(deps): Update Rust Stable to v1.84 (#377)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [STABLE](https://redirect.github.com/rust-lang/rust) | minor | `1.83.0` -> `1.84` | --- ### Release Notes <details> <summary>rust-lang/rust (STABLE)</summary> ### [`v1.84`](https://redirect.github.com/rust-lang/rust/blob/HEAD/RELEASES.md#Version-1841-2025-01-30) [Compare Source](https://redirect.github.com/rust-lang/rust/compare/1.83.0...1.84.0) \========================== <a id="1.84.1"></a> - [Fix ICE 132920 in duplicate-crate diagnostics.](https://redirect.github.com/rust-lang/rust/pull/133304/) - [Fix errors for overlapping impls in incremental rebuilds.](https://redirect.github.com/rust-lang/rust/pull/133828/) - [Fix slow compilation related to the next-generation trait solver.](https://redirect.github.com/rust-lang/rust/pull/135618/) - [Fix debuginfo when LLVM's location discriminator value limit is exceeded.](https://redirect.github.com/rust-lang/rust/pull/135643/) - Fixes for building Rust from source: - [Only try to distribute `llvm-objcopy` if llvm tools are enabled.](https://redirect.github.com/rust-lang/rust/pull/134240/) - [Add Profile Override for Non-Git Sources.](https://redirect.github.com/rust-lang/rust/pull/135433/) - [Resolve symlinks of LLVM tool binaries before copying them.](https://redirect.github.com/rust-lang/rust/pull/135585/) - [Make it possible to use ci-rustc on tarball sources.](https://redirect.github.com/rust-lang/rust/pull/135722/) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "* * * * *" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/assert-rs/snapbox). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ed Page <eopage@gmail.com>
1 parent 0a2dff3 commit fcb5217

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
- name: Install Rust
112112
uses: dtolnay/rust-toolchain@stable
113113
with:
114-
toolchain: "1.83.0" # STABLE
114+
toolchain: "1.84" # STABLE
115115
- uses: Swatinem/rust-cache@v2
116116
- name: Check documentation
117117
env:
@@ -126,7 +126,7 @@ jobs:
126126
- name: Install Rust
127127
uses: dtolnay/rust-toolchain@stable
128128
with:
129-
toolchain: "1.83.0" # STABLE
129+
toolchain: "1.84" # STABLE
130130
components: rustfmt
131131
- uses: Swatinem/rust-cache@v2
132132
- name: Check formatting
@@ -142,7 +142,7 @@ jobs:
142142
- name: Install Rust
143143
uses: dtolnay/rust-toolchain@stable
144144
with:
145-
toolchain: "1.83.0" # STABLE
145+
toolchain: "1.84" # STABLE
146146
components: clippy
147147
- uses: Swatinem/rust-cache@v2
148148
- name: Install SARIF tools

crates/snapbox-macros/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ pub use std::eprintln;
2020
#[macro_export]
2121
macro_rules! debug {
2222
($($arg:tt)*) => ({
23+
#![allow(unexpected_cfgs)] // HACK: until we upgrade the minimum anstream
2324
$crate::eprint!("[{:>w$}] \t", module_path!(), w = 28);
2425
$crate::eprintln!($($arg)*);
2526
})

crates/trycmd/src/runner.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ impl Runner {
3939
bins: &crate::BinRegistry,
4040
substitutions: &snapbox::Redactions,
4141
) {
42+
#![allow(unexpected_cfgs)] // HACK: until we upgrade the minimum anstream
4243
let palette = snapbox::report::Palette::color();
4344

4445
if self.cases.is_empty() {

0 commit comments

Comments
 (0)