Skip to content

Commit 2eaf49b

Browse files
authored
Merge pull request #18431 from lnicola/sync-from-rust
minor: Sync from downstream
2 parents cf8f950 + ffdeb5d commit 2eaf49b

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ tt = { path = "./crates/tt", version = "0.0.0" }
8484
vfs-notify = { path = "./crates/vfs-notify", version = "0.0.0" }
8585
vfs = { path = "./crates/vfs", version = "0.0.0" }
8686

87-
ra-ap-rustc_lexer = { version = "0.73", default-features = false }
88-
ra-ap-rustc_parse_format = { version = "0.73", default-features = false }
89-
ra-ap-rustc_index = { version = "0.73", default-features = false }
90-
ra-ap-rustc_abi = { version = "0.73", default-features = false }
91-
ra-ap-rustc_pattern_analysis = { version = "0.73", default-features = false }
87+
ra-ap-rustc_lexer = { version = "0.75", default-features = false }
88+
ra-ap-rustc_parse_format = { version = "0.75", default-features = false }
89+
ra-ap-rustc_index = { version = "0.75", default-features = false }
90+
ra-ap-rustc_abi = { version = "0.75", default-features = false }
91+
ra-ap-rustc_pattern_analysis = { version = "0.75", default-features = false }
9292

9393
# local crates that aren't published to crates.io. These should not have versions.
9494
test-fixture = { path = "./crates/test-fixture" }

crates/hir-ty/src/layout.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use base_db::ra_salsa::Cycle;
66
use chalk_ir::{AdtId, FloatTy, IntTy, TyKind, UintTy};
77
use hir_def::{
88
layout::{
9-
Abi, FieldsShape, Float, Integer, LayoutCalculator, LayoutCalculatorError, LayoutS,
9+
Abi, FieldsShape, Float, Integer, LayoutCalculator, LayoutCalculatorError, LayoutData,
1010
Primitive, ReprOptions, Scalar, Size, StructKind, TargetDataLayout, WrappingRange,
1111
},
1212
LocalFieldId, StructId,
@@ -66,7 +66,7 @@ impl rustc_index::Idx for RustcFieldIdx {
6666
}
6767
}
6868

69-
pub type Layout = LayoutS<RustcFieldIdx, RustcEnumVariantIdx>;
69+
pub type Layout = LayoutData<RustcFieldIdx, RustcEnumVariantIdx>;
7070
pub type TagEncoding = hir_def::layout::TagEncoding<RustcEnumVariantIdx>;
7171
pub type Variants = hir_def::layout::Variants<RustcFieldIdx, RustcEnumVariantIdx>;
7272

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1de57a5ce952c722f7053aeacfc6c90bc139b678
1+
a9d17627d241645a54c1134a20f1596127fedb60

0 commit comments

Comments
 (0)