File tree
7 files changed
+33
-8
lines changed- library
- src
- build_helper/src
- ci/citool/src
- doc
- tools
7 files changed
+33
-8
lines changed- .github/workflows/main.yml+1-1
- Cargo.toml+1-1
- src/backtrace/dbghelp32.rs+10-1
- src/backtrace/dbghelp64.rs+20-20
- src/backtrace/libunwind.rs+20-27
- src/backtrace/miri.rs+5-10
- src/backtrace/mod.rs+7-7
- src/backtrace/noop.rs+1-4
- src/dbghelp.rs+2
- src/print/fuchsia.rs+2-2
- src/symbolize/dbghelp.rs+89-116
- src/symbolize/gimli.rs+46-53
- src/symbolize/gimli/elf.rs+13-8
- src/symbolize/gimli/libs_aix.rs+6-13
- src/symbolize/gimli/libs_illumos.rs+1-1
- src/symbolize/gimli/libs_libnx.rs+1-1
- src/symbolize/gimli/libs_windows.rs+15-18
- src/symbolize/gimli/mmap_unix.rs+8-10
- src/symbolize/gimli/mmap_windows.rs+27-29
- src/symbolize/gimli/xcoff.rs+3-3
- src/symbolize/mod.rs+2-2
- src/windows_sys.rs-4
- src/windows_sys_arm32_shim.rs-53
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
172 | 172 |
| |
173 | 173 |
| |
174 | 174 |
| |
175 |
| - | |
| 175 | + | |
176 | 176 |
| |
177 | 177 |
| |
178 | 178 |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4 | 4 |
| |
5 | 5 |
| |
6 | 6 |
| |
7 |
| - | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
8 | 10 |
| |
9 | 11 |
| |
10 | 12 |
| |
| |||
15 | 17 |
| |
16 | 18 |
| |
17 | 19 |
| |
18 |
| - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
19 | 44 |
| |
20 | 45 |
| |
21 | 46 |
| |
|
- ci/dictionary.txt-1
- listings/ch03-common-programming-concepts/no-listing-24-comments-end-of-line/src/main.rs+1-1
- listings/ch03-common-programming-concepts/no-listing-25-comments-above-line/src/main.rs+1-1
- listings/ch04-understanding-ownership/listing-04-04/src/main.rs+15-16
- listings/ch04-understanding-ownership/listing-04-09/src/main.rs+3-4
- listings/ch04-understanding-ownership/no-listing-13-reference-scope-ends/src/main.rs+1-1
- listings/ch04-understanding-ownership/no-listing-15-dangling-reference-annotated/src/main.rs+2-2
- listings/ch07-managing-growing-projects/listing-07-05/src/lib.rs-3
- listings/ch07-managing-growing-projects/listing-07-07/src/lib.rs-3
- listings/ch07-managing-growing-projects/listing-07-09/src/lib.rs+3-3
- listings/ch08-common-collections/listing-08-12/src/main.rs+1-1
- listings/ch15-smart-pointers/listing-15-26/src/main.rs+1-1
- listings/ch20-advanced-features/listing-20-32/hello_macro/hello_macro_derive/src/lib.rs+2-2
- src/appendix-03-derivable-traits.md+15-15
- src/appendix-04-useful-development-tools.md+22-15
- src/ch00-00-introduction.md+9-9
- src/ch01-03-hello-cargo.md+2
- src/ch02-00-guessing-game-tutorial.md+1-1
- src/ch03-02-data-types.md+6-6
- src/ch03-04-comments.md+2-2
- src/ch04-03-slices.md+3-3
- src/ch06-02-match.md+1-1
- src/ch07-00-managing-growing-projects-with-packages-crates-and-modules.md+1-1
- src/ch07-01-packages-and-crates.md+10-9
- src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md+5-5
- src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md+17-17
- src/ch08-00-common-collections.md+6-6
- src/ch08-01-vectors.md+2-1
- src/ch08-03-hash-maps.md+8-7
- src/ch09-00-error-handling.md+2-2
- src/ch09-02-recoverable-errors-with-result.md+9-9
- src/ch09-03-to-panic-or-not-to-panic.md+2-2
- src/ch10-01-syntax.md+2-2
- src/ch10-03-lifetime-syntax.md+10-10
- src/ch11-00-testing.md+4-4
- src/ch11-01-writing-tests.md+23-20
- src/ch11-03-test-organization.md+14-13
- src/ch15-00-smart-pointers.md+2-2
- src/ch15-01-box.md+4-4
- src/ch15-02-deref.md+11-15
- src/ch15-03-drop.md+2-2
- src/ch15-04-rc.md+3-3
- src/ch15-05-interior-mutability.md+7-7
- src/ch15-06-reference-cycles.md+6-6
- src/ch16-00-concurrency.md+4-4
- src/ch16-01-threads.md+10-10
- src/ch16-02-message-passing.md+10-12
- src/ch16-03-shared-state.md+10-10
- src/ch16-04-extensible-concurrency-sync-and-send.md+2-2
- src/ch17-04-streams.md+2-2
- src/ch17-05-traits-for-async.md+2-2
- src/ch18-01-what-is-oo.md+4-4
- src/ch18-02-trait-objects.md+13-13
- src/ch19-01-all-the-places-for-patterns.md+1-1
- src/ch19-03-pattern-syntax.md+2-2
- src/ch20-01-unsafe-rust.md+26-25
- src/ch20-02-advanced-traits.md+28-27
- src/ch20-03-advanced-types.md+33-29
- src/ch20-04-advanced-functions-and-closures.md+11-11
- src/ch20-05-macros.md+9-9
- src/ch21-01-single-threaded.md+18-18
- src/ch21-02-multithreaded.md+63-66
- src/ch21-03-graceful-shutdown-and-cleanup.md+42-43
- src/title-page.md+1
- tools/doc-to-md.sh-3
- tools/docx-to-md.xsl+20-40
- mdbook-spec/src/lib.rs+28-71
- mdbook-spec/src/rules.rs+10-10
- mdbook-spec/src/std_links.rs+34-44
- src/attributes/codegen.md+14-66
- src/expressions/operator-expr.md+27-27
- src/names/namespaces.md-9
- src/names/preludes.md+4-38
- src/names/scopes.md-49
- src/patterns.md+1
- src/types/function-pointer.md+8-1
- src/unsafe-keyword.md+1-3
- src/unsafety.md-3
Submodule llvm-project updated from 1c3bb96 to 7e8c93c
0 commit comments