Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
92652dd
Merge pull request #2017 from heiher/loong64-sync
Amanieu Feb 14, 2026
9436677
Merge ref '139651428df8' from rust-lang/rust
invalid-email-address Feb 16, 2026
ee892d6
Merge pull request #2027 from rust-lang/rustc-pull
sayantn Feb 16, 2026
02063b3
Merge pull request #2023 from folkertdev/neon-vmull
sayantn Feb 17, 2026
89cf831
Auto merge of #153157 - madsmtm:fix-eq-derive-comptime-regression, r=…
bors Mar 2, 2026
7ff962b
Comments and docs: add missing periods to "ie."
DanielEScherzer Mar 3, 2026
b72b649
Auto merge of #151864 - aerooneqq:delegation-generics-propagation, r=…
bors Mar 3, 2026
b5b5b41
Rollup merge of #153336 - folkertdev:stdarch-sync-2026-03-03, r=folke…
JonathanBrouwer Mar 3, 2026
ac27cc6
Rollup merge of #152943 - CoCo-Japan-pan:impl-restriction-parse, r=Ur…
JonathanBrouwer Mar 3, 2026
149cfdb
Rollup merge of #153319 - DanielEScherzer:ie-dots, r=jhpratt
JonathanBrouwer Mar 3, 2026
723eb81
Rollup merge of #153326 - Zalathar:query-modifiers, r=nnethercote
JonathanBrouwer Mar 3, 2026
4a58b1e
Auto merge of #153344 - JonathanBrouwer:rollup-uL4XlqI, r=JonathanBro…
bors Mar 3, 2026
bcb0e22
Remove unused features in tools
mu001999 Feb 12, 2026
403297d
Rollup merge of #152164 - mu001999-contrib:lint/unused_features, r=Jo…
JonathanBrouwer Mar 4, 2026
2ba6fd9
Rollup merge of #152801 - bjorn3:lto_refactors14, r=jackh726
JonathanBrouwer Mar 4, 2026
932f27f
Rollup merge of #153196 - MikkelPaulson:const-path-separators, r=joboet
JonathanBrouwer Mar 4, 2026
d48dff9
Rollup merge of #153204 - xtqqczze:must-use-map, r=Amanieu,joboet
JonathanBrouwer Mar 4, 2026
2c1b20e
Rollup merge of #153317 - nnethercote:abort-after-infinite-errors, r=…
JonathanBrouwer Mar 4, 2026
b4170ba
Rollup merge of #153276 - Zoxc:rem-fatal-cycle, r=nnethercote
JonathanBrouwer Mar 4, 2026
0bee9c2
Rollup merge of #153300 - fmease:test-attrs-tweaks, r=JonathanBrouwer
JonathanBrouwer Mar 4, 2026
b44e8cb
Rollup merge of #153396 - folkertdev:run-make-minicore, r=jieyouxu
JonathanBrouwer Mar 4, 2026
89d86af
Rollup merge of #153401 - GuillaumeGomez:migrate-diag, r=JonathanBrouwer
JonathanBrouwer Mar 4, 2026
aa84ba0
Rollup merge of #153406 - jieyouxu:adjust-notifs, r=jieyouxu
JonathanBrouwer Mar 4, 2026
c17b242
Rollup merge of #153414 - JonathanBrouwer:translate_cleanup, r=Kivooeo
JonathanBrouwer Mar 4, 2026
0ba383e
Auto merge of #151842 - eggyal:skip-deducing-parameter-attrs-during-c…
bors Mar 4, 2026
5ecd3ed
Auto merge of #153416 - JonathanBrouwer:rollup-eezxWTV, r=JonathanBro…
bors Mar 5, 2026
ea3f645
Prepare for merging from rust-lang/rust
invalid-email-address Mar 5, 2026
048bfab
Merge ref 'f8704be04fe1' from rust-lang/rust
invalid-email-address Mar 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/base-db/src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ impl CrateGraphBuilder {
deps.into_iter()
}

/// Returns all crates in the graph, sorted in topological order (ie. dependencies of a crate
/// Returns all crates in the graph, sorted in topological order (i.e. dependencies of a crate
/// come before the crate itself).
fn crates_in_topological_order(&self) -> Vec<CrateBuilderId> {
let mut res = Vec::new();
Expand Down
4 changes: 2 additions & 2 deletions crates/hir-def/src/visibility.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl Visibility {

/// Returns the most permissive visibility of `self` and `other`.
///
/// If there is no subset relation between `self` and `other`, returns `None` (ie. they're only
/// If there is no subset relation between `self` and `other`, returns `None` (i.e. they're only
/// visible in unrelated modules).
pub(crate) fn max(
self,
Expand Down Expand Up @@ -212,7 +212,7 @@ impl Visibility {

/// Returns the least permissive visibility of `self` and `other`.
///
/// If there is no subset relation between `self` and `other`, returns `None` (ie. they're only
/// If there is no subset relation between `self` and `other`, returns `None` (i.e. they're only
/// visible in unrelated modules).
pub(crate) fn min(
self,
Expand Down
2 changes: 1 addition & 1 deletion crates/proc-macro-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
feature = "sysroot-abi",
feature(proc_macro_internals, proc_macro_diagnostic, proc_macro_span)
)]
#![allow(internal_features)]
#![allow(internal_features, unused_features)]
#![cfg_attr(feature = "in-rust-tree", feature(rustc_private))]

#[cfg(feature = "in-rust-tree")]
Expand Down
3 changes: 2 additions & 1 deletion crates/proc-macro-srv/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
internal_features,
clippy::disallowed_types,
clippy::print_stderr,
unused_crate_dependencies
unused_crate_dependencies,
unused_features
)]
#![deny(deprecated_safe, clippy::undocumented_unsafe_blocks)]

Expand Down
2 changes: 1 addition & 1 deletion rust-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
e7d90c695a39426baf5ae705de2f9570a72229de
f8704be04fe1150527fc2cf21dd44327f0fe87fb