File tree
22 files changed
+28
-28
lines changed- compiler
- rustc_span/src
- rustc_target/src/spec
- targets
- library
- std/src
- os
- wasi
- wasip2
- sys/pal
- wasip2
- src
- bootstrap/src
- core/build_steps
- doc
- rustc/src
- platform-support
- tools
- tests/assembly/targets
22 files changed
+28
-28
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1881 | 1881 |
| |
1882 | 1882 |
| |
1883 | 1883 |
| |
| 1884 | + | |
1884 | 1885 |
| |
1885 | 1886 |
| |
1886 |
| - | |
1887 | 1887 |
| |
1888 | 1888 |
| |
1889 | 1889 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1575 | 1575 |
| |
1576 | 1576 |
| |
1577 | 1577 |
| |
1578 |
| - | |
| 1578 | + | |
1579 | 1579 |
| |
1580 | 1580 |
| |
1581 | 1581 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
| |||
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
27 |
| - | |
| 27 | + | |
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
85 | 85 |
| |
86 | 86 |
| |
87 | 87 |
| |
88 |
| - | |
89 |
| - | |
| 88 | + | |
| 89 | + | |
90 | 90 |
| |
91 | 91 |
| |
92 | 92 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
31 |
| - | |
32 |
| - | |
| 31 | + | |
| 32 | + | |
33 | 33 |
| |
34 | 34 |
| |
35 | 35 |
| |
|
File renamed without changes.
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
40 | 40 |
| |
41 | 41 |
| |
42 | 42 |
| |
43 |
| - | |
44 |
| - | |
45 |
| - | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
46 | 46 |
| |
47 | 47 |
| |
48 | 48 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
49 | 49 |
| |
50 | 50 |
| |
51 | 51 |
| |
52 |
| - | |
| 52 | + | |
53 | 53 |
| |
54 | 54 |
| |
55 | 55 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
404 | 404 |
| |
405 | 405 |
| |
406 | 406 |
| |
407 |
| - | |
| 407 | + | |
408 | 408 |
| |
409 | 409 |
| |
410 | 410 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
89 | 89 |
| |
90 | 90 |
| |
91 | 91 |
| |
92 |
| - | |
| 92 | + | |
93 | 93 |
| |
94 | 94 |
| |
95 | 95 |
| |
|
- .github/workflows/main.yml+2-2
- ci/dictionary.txt+1
- listings/ch02-guessing-game-tutorial/listing-02-02/Cargo.lock+8-8
- listings/ch02-guessing-game-tutorial/listing-02-04/output.txt+5-5
- listings/ch02-guessing-game-tutorial/no-listing-02-without-expect/output.txt+4
- listings/ch03-common-programming-concepts/no-listing-01-variables-are-immutable/output.txt+1-1
- listings/ch03-common-programming-concepts/no-listing-05-mut-cant-change-types/output.txt+7-1
- listings/ch03-common-programming-concepts/no-listing-19-statements-vs-expressions/output.txt+2-17
- listings/ch03-common-programming-concepts/no-listing-23-statements-dont-return-values/output.txt+1-1
- listings/ch03-common-programming-concepts/no-listing-28-if-condition-must-be-bool/output.txt+1-1
- listings/ch03-common-programming-concepts/no-listing-31-arms-must-return-same-type/output.txt+1-1
- listings/ch03-common-programming-concepts/output-only-01-no-type-annotations/output.txt+7-6
- listings/ch04-understanding-ownership/listing-04-06/output.txt+7-4
- listings/ch04-understanding-ownership/no-listing-04-cant-use-after-move/output.txt+1-1
- listings/ch04-understanding-ownership/no-listing-10-multiple-mut-not-allowed/output.txt+1-1
- listings/ch04-understanding-ownership/no-listing-12-immutable-and-mutable-not-allowed/output.txt+1-1
- listings/ch04-understanding-ownership/no-listing-14-dangling-reference/output.txt+7-2
- listings/ch04-understanding-ownership/no-listing-19-slice-error/output.txt+1-1
- listings/ch05-using-structs-to-structure-related-data/listing-05-11/output.txt+1-1
- listings/ch05-using-structs-to-structure-related-data/no-listing-02-reference-in-struct/output.txt+1-1
- listings/ch05-using-structs-to-structure-related-data/no-listing-05-dbg-macro/output.txt+2-2
- listings/ch05-using-structs-to-structure-related-data/output-only-01-debug/output.txt+3-2
- listings/ch06-enums-and-pattern-matching/no-listing-07-cant-use-option-directly/output.txt+3-3
- listings/ch06-enums-and-pattern-matching/no-listing-10-non-exhaustive-match/output.txt+4-4
- listings/ch07-managing-growing-projects/listing-07-03/output.txt+7-3
- listings/ch07-managing-growing-projects/listing-07-05/output.txt+1-1
- listings/ch07-managing-growing-projects/listing-07-12/output.txt+12-7
- listings/ch08-common-collections/listing-08-06/output.txt+2-2
- listings/ch08-common-collections/listing-08-19/output.txt+6-6
- listings/ch08-common-collections/output-only-01-not-char-boundary/output.txt+2-1
- listings/ch09-error-handling/listing-09-01/output.txt+2-1
- listings/ch09-error-handling/listing-09-04/output.txt+2-1
- listings/ch09-error-handling/listing-09-10/output.txt+1-1
- listings/ch09-error-handling/no-listing-01-panic/output.txt+2-1
- listings/ch10-generic-types-traits-and-lifetimes/listing-10-05/output.txt+1-1
- listings/ch10-generic-types-traits-and-lifetimes/listing-10-07/output.txt+1-1
- listings/ch10-generic-types-traits-and-lifetimes/listing-10-16/output.txt+3-1
- listings/ch10-generic-types-traits-and-lifetimes/listing-10-20/output.txt+1-1
- listings/ch10-generic-types-traits-and-lifetimes/listing-10-23/output.txt+4-2
- listings/ch10-generic-types-traits-and-lifetimes/no-listing-09-unrelated-lifetime/output.txt+6-3
- listings/ch11-writing-automated-tests/listing-11-01/src/lib.rs+7-1
- listings/ch11-writing-automated-tests/listing-11-03/output.txt+2-1
- listings/ch11-writing-automated-tests/listing-11-10/output.txt+4-3
- listings/ch11-writing-automated-tests/no-listing-03-introducing-a-bug/output.txt+2-1
- listings/ch11-writing-automated-tests/no-listing-04-bug-in-add-two/output.txt+4-3
- listings/ch11-writing-automated-tests/no-listing-06-greeter-with-bug/output.txt+2-1
- listings/ch11-writing-automated-tests/no-listing-07-custom-failure-message/output.txt+2-1
- listings/ch11-writing-automated-tests/no-listing-09-guess-with-panic-msg-bug/output.txt+2-1
- listings/ch11-writing-automated-tests/output-only-01-show-output/output.txt+4-3
- listings/ch12-an-io-project/listing-12-01/output.txt+1-1
- listings/ch12-an-io-project/listing-12-07/output.txt+2-1
- listings/ch12-an-io-project/listing-12-08/output.txt+2-1
- listings/ch12-an-io-project/listing-12-12/output.txt+4
- listings/ch12-an-io-project/listing-12-16/output.txt+4-3
- listings/ch12-an-io-project/output-only-01-with-args/output.txt+1-1
- listings/ch12-an-io-project/output-only-02-missing-lifetimes/output.txt+1-1
- listings/ch13-functional-features/listing-13-03/output.txt+9-2
- listings/ch13-functional-features/listing-13-08/output.txt+1-1
- listings/ch13-functional-features/listing-13-14/output.txt+4
- listings/ch14-more-about-cargo/output-only-02-add-one/add/add_one/src/lib.rs+7-1
- listings/ch15-smart-pointers/listing-15-03/output.txt+1-1
- listings/ch15-smart-pointers/listing-15-09/output.txt+1-1
- listings/ch15-smart-pointers/listing-15-15/output.txt+7-5
- listings/ch15-smart-pointers/listing-15-17/output.txt+1-1
- listings/ch15-smart-pointers/listing-15-21/output.txt+7-6
- listings/ch15-smart-pointers/listing-15-23/output.txt+2-1
- listings/ch15-smart-pointers/no-listing-01-cant-borrow-immutable-as-mutable/output.txt+6-3
- listings/ch15-smart-pointers/output-only-01-comparing-to-reference/output.txt+6-6
- listings/ch16-fearless-concurrency/listing-16-03/output.txt+1-1
- listings/ch16-fearless-concurrency/listing-16-09/output.txt+5-1
- listings/ch16-fearless-concurrency/listing-16-13/output.txt+7-6
- listings/ch16-fearless-concurrency/listing-16-14/output.txt+4-6
- listings/ch16-fearless-concurrency/output-only-01-move-drop/output.txt+1-1
- listings/ch17-oop/listing-17-10/output.txt+2-2
- listings/ch18-patterns-and-matching/listing-18-05/output.txt+1-1
- listings/ch18-patterns-and-matching/listing-18-08/output.txt+3-12
- listings/ch18-patterns-and-matching/listing-18-25/output.txt+1-1
- listings/ch19-advanced-features/listing-19-05/output.txt+1-1
- listings/ch19-advanced-features/listing-19-20/output.txt+1-1
- listings/ch19-advanced-features/no-listing-02-impl-outlineprint-for-point/output.txt+3-3
- listings/ch19-advanced-features/no-listing-18-returns-closure/output.txt+8-4
- listings/ch19-advanced-features/output-only-01-missing-unsafe/output.txt+1-1
- listings/ch20-web-server/listing-20-12/output.txt+1-1
- listings/ch20-web-server/listing-20-17/output.txt+9-1
- listings/ch20-web-server/listing-20-22/output.txt+3-3
- listings/ch20-web-server/no-listing-01-define-threadpool-struct/output.txt+1-1
- listings/ch20-web-server/no-listing-02-impl-threadpool-new/output.txt+2-2
- listings/ch20-web-server/no-listing-04-update-worker-definition/output.txt+3-3
- rust-toolchain+1-1
- src/ch03-02-data-types.md+2-1
- src/ch05-01-defining-structs.md+1-1
- src/ch09-01-unrecoverable-errors-with-panic.md+10-9
- src/ch09-02-recoverable-errors-with-result.md+4-6
- src/ch15-01-box.md+1-1
- src/title-page.md+1-1
Submodule edition-guide updated 10 files
- src/SUMMARY.md+11
- src/editions/transitioning-an-existing-project-to-a-new-edition.md+19
- src/rust-2024/cargo-remove-implicit-features.md+12
- src/rust-2024/index.md+21
- src/rust-2024/prelude.md+69
- src/rust-2024/public-private-dependencies.md+12
- src/rust-2024/rpit-lifetime-capture.md+12
- src/rust-2024/rustfmt-overflow-delimited-expr.md+12
- src/rust-2024/static-mut-reference.md+40
- src/rust-2024/unsafe-op-in-unsafe-fn.md+58
Submodule rust-by-example updated 13 files
Submodule rustc-dev-guide updated 33 files
- book.toml+3-1
- src/appendix/glossary.md+2-2
- src/backend/updating-llvm.md+1-2
- src/borrow_check/drop_check.md+2
- src/borrow_check/region_inference.md+1-3
- src/borrow_check/region_inference/lifetime_parameters.md+3-3
- src/bound-vars-and-params.md+2-2
- src/bug-fix-procedure.md+1-1
- src/building/bootstrapping.md+1-1
- src/building/suggested.md+6
- src/compiler-debugging.md+9-6
- src/const-eval/interpret.md+2-2
- src/diagnostics.md+27-31
- src/diagnostics/diagnostic-structs.md+14-13
- src/diagnostics/error-codes.md+4-4
- src/diagnostics/error-guaranteed.md+2-3
- src/diagnostics/lintstore.md+1-1
- src/diagnostics/translation.md+3-3
- src/generics.md+9-9
- src/git.md+16-6
- src/llvm-coverage-instrumentation.md+3-4
- src/macro-expansion.md+5-9
- src/memory.md+4-1
- src/overview.md+9-6
- src/panic-implementation.md+16-14
- src/serialization.md-2
- src/tests/compiletest.md+11-11
- src/tests/headers.md+10-9
- src/tests/ui.md+22-17
- src/the-parser.md+2-2
- src/ty-fold.md+1-1
- src/ty.md+16-14
- src/unsafety-checking.md+1-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
60 | 60 |
| |
61 | 61 |
| |
62 | 62 |
| |
63 |
| - | |
| 63 | + | |
64 | 64 |
| |
65 | 65 |
| |
66 | 66 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
361 | 361 |
| |
362 | 362 |
| |
363 | 363 |
| |
364 |
| - | |
| 364 | + | |
365 | 365 |
| |
366 | 366 |
| |
367 | 367 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 |
| - | |
| 1 | + | |
2 | 2 |
| |
3 | 3 |
| |
4 | 4 |
| |
5 |
| - | |
6 |
| - | |
| 5 | + | |
| 6 | + | |
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
|
Submodule llvm-project updated from 700fbf9 to 9ea7f73
Submodule cargo updated 1035 files
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
489 | 489 |
| |
490 | 490 |
| |
491 | 491 |
| |
492 |
| - | |
| 492 | + | |
493 | 493 |
| |
494 | 494 |
| |
495 | 495 |
| |
|
0 commit comments