Skip to content

Commit 4bbbf21

Browse files
authored
chore(deps): update msrv (1 version) to v1.92 (#16381)
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [MSRV:1](https://redirect.github.com/rust-lang/rust) | minor | `1.91` -> `1.92` | --- ### Release Notes <details> <summary>rust-lang/rust (MSRV:1)</summary> ### [`v1.92`](https://redirect.github.com/rust-lang/rust/blob/HEAD/RELEASES.md#Version-1920-2025-12-11) [Compare Source](https://redirect.github.com/rust-lang/rust/compare/1.91.0...1.92.0) \========================== <a id="1.92.0-Language"></a> ## Language - [Document `MaybeUninit` representation and validity](https://redirect.github.com/rust-lang/rust/pull/140463) - [Allow `&raw [mut | const]` for union field in safe code](https://redirect.github.com/rust-lang/rust/pull/141469) - [Prefer item bounds of associated types over where-bounds for auto-traits and `Sized`](https://redirect.github.com/rust-lang/rust/pull/144064) - [Do not materialize `X` in `[X; 0]` when `X` is unsizing a const](https://redirect.github.com/rust-lang/rust/pull/145277) - [Support combining `#[track_caller]` and `#[no_mangle]` (requires every declaration specifying `#[track_caller]` as well)](https://redirect.github.com/rust-lang/rust/pull/145724) - [Make never type lints `never_type_fallback_flowing_into_unsafe` and `dependency_on_unit_never_type_fallback` deny-by-default](https://redirect.github.com/rust-lang/rust/pull/146167) - [Allow specifying multiple bounds for same associated item, except in trait objects](https://redirect.github.com/rust-lang/rust/pull/146593) - [Slightly strengthen higher-ranked region handling in coherence](https://redirect.github.com/rust-lang/rust/pull/146725) - [The `unused_must_use` lint no longer warns on `Result<(), Uninhabited>` (for instance, `Result<(), !>`), or `ControlFlow<Uninhabited, ()>`](https://redirect.github.com/rust-lang/rust/pull/147382). This avoids having to check for an error that can never happen. <a id="1.92.0-Compiler"></a> ## Compiler - [Make `mips64el-unknown-linux-muslabi64` link dynamically](https://redirect.github.com/rust-lang/rust/pull/146858) - [Remove current code for embedding command-line args in PDB](https://redirect.github.com/rust-lang/rust/pull/147022) Command-line information is typically not needed by debugging tools, and the removed code was causing problems for incremental builds even on targets that don't use PDB debuginfo. <a id="1.92.0-Libraries"></a> ## Libraries - [Specialize `Iterator::eq{_by}` for `TrustedLen` iterators](https://redirect.github.com/rust-lang/rust/pull/137122) - [Simplify `Extend` for tuples](https://redirect.github.com/rust-lang/rust/pull/138799) - [Added details to `Debug` for `EncodeWide`](https://redirect.github.com/rust-lang/rust/pull/140153). - [`iter::Repeat::last`](https://redirect.github.com/rust-lang/rust/pull/147258) and [`count`](https://redirect.github.com/rust-lang/rust/pull/146410) will now panic, rather than looping infinitely. <a id="1.92.0-Stabilized-APIs"></a> ## Stabilized APIs - [`NonZero<u{N}>::div_ceil`](https://doc.rust-lang.org/stable/std/num/struct.NonZero.html#method.div_ceil) - [`Location::file_as_c_str`](https://doc.rust-lang.org/stable/std/panic/struct.Location.html#method.file_as_c_str) - [`RwLockWriteGuard::downgrade`](https://doc.rust-lang.org/stable/std/sync/struct.RwLockWriteGuard.html#method.downgrade) - [`Box::new_zeroed`](https://doc.rust-lang.org/stable/std/boxed/struct.Box.html#method.new_zeroed) - [`Box::new_zeroed_slice`](https://doc.rust-lang.org/stable/std/boxed/struct.Box.html#method.new_zeroed_slice) - [`Rc::new_zeroed`](https://doc.rust-lang.org/stable/std/rc/struct.Rc.html#method.new_zeroed) - [`Rc::new_zeroed_slice`](https://doc.rust-lang.org/stable/std/rc/struct.Rc.html#method.new_zeroed_slice) - [`Arc::new_zeroed`](https://doc.rust-lang.org/stable/std/sync/struct.Arc.html#method.new_zeroed) - [`Arc::new_zeroed_slice`](https://doc.rust-lang.org/stable/std/sync/struct.Arc.html#method.new_zeroed_slice) - [`btree_map::Entry::insert_entry`](https://doc.rust-lang.org/stable/std/collections/btree_map/enum.Entry.html#method.insert_entry) - [`btree_map::VacantEntry::insert_entry`](https://doc.rust-lang.org/stable/std/collections/btree_map/struct.VacantEntry.html#method.insert_entry) - [`impl Extend<proc_macro::Group> for proc_macro::TokenStream`](https://doc.rust-lang.org/stable/proc_macro/struct.TokenStream.html#impl-Extend%3CGroup%3E-for-TokenStream) - [`impl Extend<proc_macro::Literal> for proc_macro::TokenStream`](https://doc.rust-lang.org/stable/proc_macro/struct.TokenStream.html#impl-Extend%3CLiteral%3E-for-TokenStream) - [`impl Extend<proc_macro::Punct> for proc_macro::TokenStream`](https://doc.rust-lang.org/stable/proc_macro/struct.TokenStream.html#impl-Extend%3CPunct%3E-for-TokenStream) - [`impl Extend<proc_macro::Ident> for proc_macro::TokenStream`](https://doc.rust-lang.org/stable/proc_macro/struct.TokenStream.html#impl-Extend%3CIdent%3E-for-TokenStream) These previously stable APIs are now stable in const contexts: - [`<[_]>::rotate_left`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.rotate_left) - [`<[_]>::rotate_right`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.rotate_right) <a id="1.92.0-Cargo"></a> ## Cargo - [Added a new chapter](https://redirect.github.com/rust-lang/cargo/issues/16119) to the Cargo book, ["Optimizing Build Performance"](https://doc.rust-lang.org/stable/cargo/guide/build-performance.html). <a id="1.92.0-Rustdoc"></a> ## Rustdoc - [If a trait item appears in rustdoc search, hide the corresponding impl items](https://redirect.github.com/rust-lang/rust/pull/145898). Previously a search for "last" would show both `Iterator::last` as well as impl methods like `std::vec::IntoIter::last`. Now these impl methods will be hidden, freeing up space for inherent methods like `BTreeSet::last`. - [Relax rules for identifiers in search](https://redirect.github.com/rust-lang/rust/pull/147860). Previously you could only search for identifiers that were valid in rust code, now searches only need to be valid as part of an identifier. For example, you can now perform a search that starts with a digit. <a id="1.92.0-Compatibility-Notes"></a> ## Compatibility Notes - [Fix backtraces with `-C panic=abort` on Linux by generating unwind tables by default](https://redirect.github.com/rust-lang/rust/pull/143613). Build with `-C force-unwind-tables=no` to keep omitting unwind tables. * As part of the larger effort refactoring compiler built-in attributes and their diagnostics, [the future-compatibility lint `invalid_macro_export_arguments` is upgraded to deny-by-default and will be reported in dependencies too.](https://redirect.github.com/rust-lang/rust/pull/143857) * [Update the minimum external LLVM to 20](https://redirect.github.com/rust-lang/rust/pull/145071) * [Prevent downstream `impl DerefMut for Pin<LocalType>`](https://redirect.github.com/rust-lang/rust/pull/145608) * [Don't apply temporary lifetime extension rules to the arguments of non-extended `pin!` and formatting macros](https://redirect.github.com/rust-lang/rust/pull/145838) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Every minute ( * * * * * ) (UTC), 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. --- - [ ] <!-- 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/rust-lang/cargo). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi40Mi4yIiwidXBkYXRlZEluVmVyIjoiNDIuNDIuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119-->
2 parents c55b3bc + 82d6ad5 commit 4bbbf21

File tree

10 files changed

+30
-30
lines changed

10 files changed

+30
-30
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ blake3 = "1.8.2"
2727
build-rs = { version = "0.3.1", path = "crates/build-rs" }
2828
cargo = { path = "" }
2929
cargo-credential = { version = "0.4.2", path = "credential/cargo-credential" }
30-
cargo-credential-libsecret = { version = "0.5.4", path = "credential/cargo-credential-libsecret" }
31-
cargo-credential-macos-keychain = { version = "0.4.19", path = "credential/cargo-credential-macos-keychain" }
32-
cargo-credential-wincred = { version = "0.4.19", path = "credential/cargo-credential-wincred" }
30+
cargo-credential-libsecret = { version = "0.5.5", path = "credential/cargo-credential-libsecret" }
31+
cargo-credential-macos-keychain = { version = "0.4.20", path = "credential/cargo-credential-macos-keychain" }
32+
cargo-credential-wincred = { version = "0.4.20", path = "credential/cargo-credential-wincred" }
3333
cargo-platform = { path = "crates/cargo-platform", version = "0.3.0" }
34-
cargo-test-macro = { version = "0.4.8", path = "crates/cargo-test-macro" }
35-
cargo-test-support = { version = "0.9.1", path = "crates/cargo-test-support" }
36-
cargo-util = { version = "0.2.26", path = "crates/cargo-util" }
34+
cargo-test-macro = { version = "0.4.9", path = "crates/cargo-test-macro" }
35+
cargo-test-support = { version = "0.9.2", path = "crates/cargo-test-support" }
36+
cargo-util = { version = "0.2.27", path = "crates/cargo-util" }
3737
cargo-util-schemas = { version = "0.12.0", path = "crates/cargo-util-schemas" }
3838
cargo_metadata = "0.23.1"
3939
clap = "4.5.53"
4040
clap_complete = { version = "4.5.61", features = ["unstable-dynamic"] }
4141
color-print = "0.3.7"
4242
core-foundation = { version = "0.10.1", features = ["mac_os_10_7_support"] }
43-
crates-io = { version = "0.40.16", path = "crates/crates-io" }
43+
crates-io = { version = "0.40.17", path = "crates/crates-io" }
4444
criterion = { version = "0.7.0", features = ["html_reports"] }
4545
curl = "0.4.49"
4646
# Do not upgrade curl-sys past 0.4.83
@@ -142,7 +142,7 @@ name = "cargo"
142142
version = "0.94.0"
143143
edition.workspace = true
144144
license.workspace = true
145-
rust-version = "1.91" # MSRV:1
145+
rust-version = "1.92" # MSRV:1
146146
homepage = "https://doc.rust-lang.org/cargo/index.html"
147147
repository.workspace = true
148148
documentation = "https://docs.rs/cargo"

crates/cargo-test-macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "cargo-test-macro"
3-
version = "0.4.8"
3+
version = "0.4.9"
44
edition.workspace = true
5-
rust-version = "1.91" # MSRV:1
5+
rust-version = "1.92" # MSRV:1
66
license.workspace = true
77
homepage.workspace = true
88
repository.workspace = true

crates/cargo-test-support/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "cargo-test-support"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
edition.workspace = true
5-
rust-version = "1.91" # MSRV:1
5+
rust-version = "1.92" # MSRV:1
66
license.workspace = true
77
homepage.workspace = true
88
repository.workspace = true

crates/cargo-util-schemas/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-util-schemas"
33
version = "0.12.0"
4-
rust-version = "1.91" # MSRV:1
4+
rust-version = "1.92" # MSRV:1
55
edition.workspace = true
66
license.workspace = true
77
homepage.workspace = true

crates/cargo-util/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-util"
3-
version = "0.2.26"
4-
rust-version = "1.91" # MSRV:1
3+
version = "0.2.27"
4+
rust-version = "1.92" # MSRV:1
55
edition.workspace = true
66
license.workspace = true
77
homepage.workspace = true

crates/crates-io/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "crates-io"
3-
version = "0.40.16"
4-
rust-version = "1.91" # MSRV:1
3+
version = "0.40.17"
4+
rust-version = "1.92" # MSRV:1
55
edition.workspace = true
66
license.workspace = true
77
homepage.workspace = true

credential/cargo-credential-libsecret/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-credential-libsecret"
3-
version = "0.5.4"
4-
rust-version = "1.91" # MSRV:1
3+
version = "0.5.5"
4+
rust-version = "1.92" # MSRV:1
55
edition.workspace = true
66
license.workspace = true
77
homepage.workspace = true

credential/cargo-credential-macos-keychain/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-credential-macos-keychain"
3-
version = "0.4.19"
4-
rust-version = "1.91" # MSRV:1
3+
version = "0.4.20"
4+
rust-version = "1.92" # MSRV:1
55
edition.workspace = true
66
license.workspace = true
77
homepage.workspace = true

credential/cargo-credential-wincred/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "cargo-credential-wincred"
3-
version = "0.4.19"
4-
rust-version = "1.91" # MSRV:1
3+
version = "0.4.20"
4+
rust-version = "1.92" # MSRV:1
55
edition.workspace = true
66
license.workspace = true
77
homepage.workspace = true

0 commit comments

Comments
 (0)