Skip to content

Commit 3c4ae11

Browse files
authored
Merge pull request #21731 from rust-lang/rustc-pull
Rustc pull update
2 parents 566fe41 + 1940931 commit 3c4ae11

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

crates/base-db/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub use crate::{
3232
},
3333
};
3434
use dashmap::{DashMap, mapref::entry::Entry};
35-
pub use query_group::{self};
35+
pub use query_group;
3636
use rustc_hash::{FxHashSet, FxHasher};
3737
use salsa::{Durability, Setter};
3838
pub use semver::{BuildMetadata, Prerelease, Version, VersionReq};

crates/hir-expand/src/builtin/fn_macro.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ use std::borrow::Cow;
55
use base_db::AnchoredPath;
66
use cfg::CfgExpr;
77
use either::Either;
8-
use intern::{
9-
Symbol,
10-
sym::{self},
11-
};
8+
use intern::{Symbol, sym};
129
use itertools::Itertools;
1310
use mbe::{DelimiterKind, expect_fragment};
1411
use span::{Edition, FileId, Span};

crates/hir-ty/src/lower.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ use rustc_hash::FxHashSet;
4040
use rustc_type_ir::{
4141
AliasTyKind, BoundVarIndexKind, ConstKind, DebruijnIndex, ExistentialPredicate,
4242
ExistentialProjection, ExistentialTraitRef, FnSig, Interner, OutlivesPredicate, TermKind,
43-
TyKind::{self},
44-
TypeFoldable, TypeVisitableExt, Upcast, UpcastFrom, elaborate,
43+
TyKind, TypeFoldable, TypeVisitableExt, Upcast, UpcastFrom, elaborate,
4544
inherent::{Clause as _, GenericArgs as _, IntoKind as _, Region as _, Ty as _},
4645
};
4746
use smallvec::SmallVec;

crates/ide-assists/src/handlers/promote_local_to_const.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use syntax::{
88

99
use crate::{
1010
assist_context::{AssistContext, Assists},
11-
utils::{self},
11+
utils,
1212
};
1313

1414
// Assist: promote_local_to_const

crates/rust-analyzer/src/tracing/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Simple logger that logs either to stderr or to a file, using `tracing_subscriber`
22
//! filter syntax and `tracing_appender` for non blocking output.
33
4-
use std::io::{self};
4+
use std::io;
55

66
use anyhow::Context;
77
use tracing::level_filters::LevelFilter;

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c78a29473a68f07012904af11c92ecffa68fcc75
1+
e7d90c695a39426baf5ae705de2f9570a72229de

0 commit comments

Comments
 (0)