Skip to content

Commit 09e0696

Browse files
authored
Merge pull request rust-lang#4190 from rust-lang/rustup-2025-02-13
Automatic Rustup
2 parents 2066d6e + dc8dbd2 commit 09e0696

File tree

1,666 files changed

+15295
-10798
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,666 files changed

+15295
-10798
lines changed

Cargo.lock

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1997,7 +1997,7 @@ dependencies = [
19971997
"anyhow",
19981998
"clap",
19991999
"fs-err",
2000-
"rustc-hash 2.1.0",
2000+
"rustc-hash 2.1.1",
20012001
"rustdoc-json-types",
20022002
"serde",
20032003
"serde_json",
@@ -3188,7 +3188,7 @@ dependencies = [
31883188
"proc-macro2",
31893189
"quote",
31903190
"rinja_parser",
3191-
"rustc-hash 2.1.0",
3191+
"rustc-hash 2.1.1",
31923192
"serde",
31933193
"syn 2.0.96",
31943194
]
@@ -3252,9 +3252,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
32523252

32533253
[[package]]
32543254
name = "rustc-hash"
3255-
version = "2.1.0"
3255+
version = "2.1.1"
32563256
source = "registry+https://github.com/rust-lang/crates.io-index"
3257-
checksum = "c7fb8039b3032c191086b10f11f319a6e99e1e82889c5cc6046f515c9db1d497"
3257+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
32583258

32593259
[[package]]
32603260
name = "rustc-main"
@@ -3317,7 +3317,6 @@ dependencies = [
33173317
"rand 0.8.5",
33183318
"rand_xoshiro",
33193319
"rustc_data_structures",
3320-
"rustc_feature",
33213320
"rustc_index",
33223321
"rustc_macros",
33233322
"rustc_serialize",
@@ -3379,6 +3378,7 @@ dependencies = [
33793378
"rustc_ast_pretty",
33803379
"rustc_data_structures",
33813380
"rustc_errors",
3381+
"rustc_feature",
33823382
"rustc_fluent_macro",
33833383
"rustc_hir",
33843384
"rustc_index",
@@ -3409,7 +3409,6 @@ dependencies = [
34093409
"rustc_parse",
34103410
"rustc_session",
34113411
"rustc_span",
3412-
"rustc_target",
34133412
"thin-vec",
34143413
]
34153414

@@ -3654,7 +3653,7 @@ dependencies = [
36543653
"memmap2",
36553654
"parking_lot",
36563655
"portable-atomic",
3657-
"rustc-hash 2.1.0",
3656+
"rustc-hash 2.1.1",
36583657
"rustc-rayon",
36593658
"rustc-stable-hash",
36603659
"rustc_arena",
@@ -3683,6 +3682,7 @@ version = "0.0.0"
36833682
dependencies = [
36843683
"ctrlc",
36853684
"libc",
3685+
"rustc_abi",
36863686
"rustc_ast",
36873687
"rustc_ast_lowering",
36883688
"rustc_ast_passes",
@@ -4337,6 +4337,7 @@ version = "0.0.0"
43374337
dependencies = [
43384338
"rustc_abi",
43394339
"rustc_ast",
4340+
"rustc_ast_lowering",
43404341
"rustc_ast_pretty",
43414342
"rustc_attr_parsing",
43424343
"rustc_data_structures",
@@ -4360,7 +4361,7 @@ dependencies = [
43604361
name = "rustc_pattern_analysis"
43614362
version = "0.0.0"
43624363
dependencies = [
4363-
"rustc-hash 2.1.0",
4364+
"rustc-hash 2.1.1",
43644365
"rustc_abi",
43654366
"rustc_apfloat",
43664367
"rustc_arena",
@@ -4421,6 +4422,7 @@ version = "0.0.0"
44214422
dependencies = [
44224423
"parking_lot",
44234424
"rustc-rayon-core",
4425+
"rustc_abi",
44244426
"rustc_ast",
44254427
"rustc_data_structures",
44264428
"rustc_errors",
@@ -4432,7 +4434,6 @@ dependencies = [
44324434
"rustc_serialize",
44334435
"rustc_session",
44344436
"rustc_span",
4435-
"rustc_target",
44364437
"smallvec",
44374438
"thin-vec",
44384439
"tracing",
@@ -4755,7 +4756,7 @@ name = "rustdoc-json-types"
47554756
version = "0.1.0"
47564757
dependencies = [
47574758
"bincode",
4758-
"rustc-hash 2.1.0",
4759+
"rustc-hash 2.1.1",
47594760
"serde",
47604761
"serde_json",
47614762
]
@@ -5406,7 +5407,7 @@ dependencies = [
54065407
"ignore",
54075408
"miropt-test-tools",
54085409
"regex",
5409-
"rustc-hash 2.1.0",
5410+
"rustc-hash 2.1.1",
54105411
"semver",
54115412
"serde",
54125413
"similar",

compiler/rustc_abi/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ bitflags = "2.4.1"
99
rand = { version = "0.8.4", default-features = false, optional = true }
1010
rand_xoshiro = { version = "0.6.0", optional = true }
1111
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
12-
rustc_feature = { path = "../rustc_feature", optional = true }
1312
rustc_index = { path = "../rustc_index", default-features = false }
1413
rustc_macros = { path = "../rustc_macros", optional = true }
1514
rustc_serialize = { path = "../rustc_serialize", optional = true }
@@ -24,7 +23,6 @@ default = ["nightly", "randomize"]
2423
# without depending on rustc_data_structures, rustc_macros and rustc_serialize
2524
nightly = [
2625
"dep:rustc_data_structures",
27-
"dep:rustc_feature",
2826
"dep:rustc_macros",
2927
"dep:rustc_serialize",
3028
"dep:rustc_span",

compiler/rustc_abi/src/callconv.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#[cfg(feature = "nightly")]
2-
use crate::{BackendRepr, FieldsShape, TyAbiInterface, TyAndLayout};
3-
use crate::{Primitive, Size, Variants};
2+
use crate::{BackendRepr, FieldsShape, Primitive, Size, TyAbiInterface, TyAndLayout, Variants};
43

54
mod reg;
65

0 commit comments

Comments
 (0)