Skip to content

Commit 9110617

Browse files
authored
Merge pull request #4455 from RalfJung/rustup
Rustup
2 parents a96e73f + bd84ba8 commit 9110617

File tree

429 files changed

+6410
-3973
lines changed

Some content is hidden

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

429 files changed

+6410
-3973
lines changed

.github/ISSUE_TEMPLATE/tracking_issue_future.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ it would be `T-libs-api`.
1414
Also check for any `A-` labels to add.
1515
-->
1616

17-
This is the **tracking issue** for the `YOUR_LINT_NAME_HERE` future-compatibility warning and other related errors. The goal of this page is describe why this change was made and how you can fix code that is affected by it. It also provides a place to ask questions or register a complaint if you feel the change should not be made. For more information on the policy around future-compatibility warnings, see our [breaking change policy guidelines][guidelines].
17+
This is the **tracking issue** for the `YOUR_LINT_NAME_HERE` future-compatibility warning and other related errors. The goal of this page is to describe why this change was made and how you can fix code that is affected by it. It also provides a place to ask questions or register a complaint if you feel the change should not be made. For more information on the policy around future-compatibility warnings, see our [breaking change policy guidelines][guidelines].
1818

1919
[guidelines]: https://rustc-dev-guide.rust-lang.org/bug-fix-procedure.html
2020

@@ -44,7 +44,7 @@ This is the **tracking issue** for the `YOUR_LINT_NAME_HERE` future-compatibilit
4444

4545
- [ ] Implement the lint
4646
- [ ] Raise lint level to deny
47-
- [ ] Make lint report in dependencies
47+
- [ ] Change the lint to report in dependencies
4848
- [ ] Switch to a hard error
4949

5050
### Implementation history

Cargo.lock

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4474,6 +4474,7 @@ dependencies = [
44744474
"rustc_feature",
44754475
"rustc_fluent_macro",
44764476
"rustc_hir",
4477+
"rustc_index",
44774478
"rustc_macros",
44784479
"rustc_metadata",
44794480
"rustc_middle",
@@ -4552,9 +4553,6 @@ dependencies = [
45524553
"rustc_session",
45534554
"rustc_span",
45544555
"rustc_target",
4555-
"scoped-tls",
4556-
"serde",
4557-
"tracing",
45584556
]
45594557

45604558
[[package]]
@@ -4622,6 +4620,7 @@ dependencies = [
46224620
"rand 0.9.1",
46234621
"rand_xorshift",
46244622
"scoped-tls",
4623+
"smallvec",
46254624
]
46264625

46274626
[[package]]
@@ -5107,7 +5106,16 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
51075106
name = "stable_mir"
51085107
version = "0.1.0-preview"
51095108
dependencies = [
5109+
"rustc_abi",
5110+
"rustc_hir",
5111+
"rustc_middle",
5112+
"rustc_session",
51105113
"rustc_smir",
5114+
"rustc_span",
5115+
"rustc_target",
5116+
"scoped-tls",
5117+
"serde",
5118+
"tracing",
51115119
]
51125120

51135121
[[package]]

0 commit comments

Comments
 (0)