Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4305769
Tweak handling of "struct like start" where a struct isn't supported
estebank Sep 24, 2025
a4e87e9
Support `#[rustc_align_static]` inside `thread_local!`
Jules-Bertholet Sep 10, 2025
bb48c16
Simplify logic slightly
estebank Sep 24, 2025
4d32b9a
Hoist non-platform-specific code out of `thread_local_inner!`
Jules-Bertholet Sep 27, 2025
86f2d42
indexing: reword help
hkBst Sep 15, 2025
5b809b3
Don't enable shared memory with Wasm atomics
daxpedda Oct 1, 2025
89bd8f3
Extends `rustc_force_inline` to inherent methods
CrooseGit Sep 25, 2025
8dfea22
implement `Box::take`
edwloef Oct 1, 2025
6961953
Switch `citool` to 2024 edition
GuillaumeGomez Oct 1, 2025
4baf920
Initialize llvm submodule if not already the case to run citool
GuillaumeGomez Oct 1, 2025
3e8ce2b
Adjust WASI and WALI targets
daxpedda Oct 1, 2025
94f00f4
Fix memory leak in `os` impl
Jules-Bertholet Oct 1, 2025
5991c87
Update books
rustbot Oct 1, 2025
30d57ab
mbe: Rename a local variable to match corresponding field names
joshtriplett Sep 14, 2025
6bff1ab
mbe: Support `unsafe` attribute rules
joshtriplett Sep 14, 2025
05c5b87
mbe: Add parsing tests for `unsafe` macro rules
joshtriplett Sep 14, 2025
ea0e00c
mbe: Add tests for `unsafe` attr invocation
joshtriplett Sep 14, 2025
4fc0a0d
mbe: `expand_invoc`: Add comment about not needing to check safety of…
joshtriplett Sep 28, 2025
59c4dfe
Forbid `//@ compile-flags: -Cincremental=` in tests
Zalathar Oct 1, 2025
f94b65d
Rollup merge of #146281 - Jules-Bertholet:static-align-thread-local, …
jhpratt Oct 2, 2025
dc66e63
Rollup merge of #146535 - joshtriplett:mbe-unsafe-attr, r=petrochenkov
jhpratt Oct 2, 2025
f5c4d4d
Rollup merge of #146585 - hkBst:indexing-1, r=jdonszelmann
jhpratt Oct 2, 2025
770bcc7
Rollup merge of #147004 - estebank:ascription-in-pat, r=fee1-dead
jhpratt Oct 2, 2025
27c84ec
Rollup merge of #147221 - Zalathar:incremental, r=lqd
jhpratt Oct 2, 2025
ea8ae04
Rollup merge of #147225 - daxpedda:wasm-u-u-atomics-threads, r=alexcr…
jhpratt Oct 2, 2025
fa0690b
Rollup merge of #147227 - edwloef:box_take, r=joboet
jhpratt Oct 2, 2025
d481279
Rollup merge of #147231 - CrooseGit:dev/reucru01/extend_rustc_force_i…
jhpratt Oct 2, 2025
c60d31e
Rollup merge of #147233 - GuillaumeGomez:citool-submodule-init, r=Kobzol
jhpratt Oct 2, 2025
2b5841c
Rollup merge of #147236 - rustbot:docs-update, r=ehuss
jhpratt Oct 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update books
  • Loading branch information
rustbot committed Oct 1, 2025
commit 5991c8703d01cc73c31c51fef5d92b93ac1391b4
2 changes: 1 addition & 1 deletion src/doc/book
Submodule book updated 98 files
+5 −0 ci/dictionary.txt
+0 −17 nostarch/acknowledgments.md
+57 −33 nostarch/chapter01.md
+60 −51 nostarch/chapter02.md
+98 −81 nostarch/chapter03.md
+94 −94 nostarch/chapter04.md
+86 −62 nostarch/chapter05.md
+68 −60 nostarch/chapter06.md
+99 −83 nostarch/chapter07.md
+87 −59 nostarch/chapter08.md
+120 −95 nostarch/chapter09.md
+ nostarch/docx/chapter01.docx
+ nostarch/docx/chapter02.docx
+ nostarch/docx/chapter03.docx
+ nostarch/docx/chapter04.docx
+ nostarch/docx/chapter05.docx
+ nostarch/docx/chapter06.docx
+ nostarch/docx/chapter07.docx
+ nostarch/docx/chapter08.docx
+ nostarch/docx/chapter09.docx
+ nostarch/docx/frontmatter.docx
+140 −114 nostarch/frontmatter.md
+15 −15 src/SUMMARY.md
+75 −70 src/ch00-00-introduction.md
+16 −8 src/ch01-01-installation.md
+26 −13 src/ch01-02-hello-world.md
+13 −10 src/ch01-03-hello-cargo.md
+58 −51 src/ch02-00-guessing-game-tutorial.md
+2 −2 src/ch03-00-common-programming-concepts.md
+13 −10 src/ch03-01-variables-and-mutability.md
+29 −26 src/ch03-02-data-types.md
+17 −18 src/ch03-03-how-functions-work.md
+2 −2 src/ch03-04-comments.md
+31 −24 src/ch03-05-control-flow.md
+48 −50 src/ch04-01-what-is-ownership.md
+16 −16 src/ch04-02-references-and-borrowing.md
+30 −29 src/ch04-03-slices.md
+4 −4 src/ch05-00-structs.md
+32 −19 src/ch05-01-defining-structs.md
+19 −11 src/ch05-02-example-structs.md
+20 −16 src/ch05-03-method-syntax.md
+3 −3 src/ch06-00-enums.md
+26 −22 src/ch06-01-defining-an-enum.md
+23 −17 src/ch06-02-match.md
+12 −12 src/ch06-03-if-let.md
+9 −5 src/ch07-00-managing-growing-projects-with-packages-crates-and-modules.md
+16 −15 src/ch07-01-packages-and-crates.md
+17 −13 src/ch07-02-defining-modules-to-control-scope-and-privacy.md
+24 −25 src/ch07-03-paths-for-referring-to-an-item-in-the-module-tree.md
+18 −10 src/ch07-04-bringing-paths-into-scope-with-the-use-keyword.md
+9 −9 src/ch07-05-separating-modules-into-different-files.md
+1 −1 src/ch08-00-common-collections.md
+19 −19 src/ch08-01-vectors.md
+53 −29 src/ch08-02-strings.md
+14 −10 src/ch08-03-hash-maps.md
+3 −3 src/ch09-00-error-handling.md
+7 −7 src/ch09-01-unrecoverable-errors-with-panic.md
+46 −34 src/ch09-02-recoverable-errors-with-result.md
+64 −54 src/ch09-03-to-panic-or-not-to-panic.md
+20 −4 src/ch10-02-traits.md
+25 −5 src/ch10-03-lifetime-syntax.md
+5 −1 src/ch11-01-writing-tests.md
+5 −1 src/ch11-02-running-tests.md
+6 −2 src/ch11-03-test-organization.md
+7 −3 src/ch12-03-improving-error-handling-and-modularity.md
+4 −1 src/ch12-04-testing-the-librarys-functionality.md
+4 −1 src/ch12-05-working-with-environment-variables.md
+5 −1 src/ch12-06-writing-to-stderr-instead-of-stdout.md
+9 −4 src/ch13-01-closures.md
+4 −1 src/ch13-02-iterators.md
+11 −3 src/ch13-03-improving-our-io-project.md
+5 −1 src/ch13-04-performance.md
+15 −4 src/ch14-02-publishing-to-crates-io.md
+6 −2 src/ch14-03-cargo-workspaces.md
+1 −1 src/ch14-04-installing-binaries.md
+15 −3 src/ch15-01-box.md
+16 −6 src/ch15-02-deref.md
+1 −1 src/ch15-03-drop.md
+10 −2 src/ch15-04-rc.md
+23 −6 src/ch15-05-interior-mutability.md
+6 −2 src/ch15-06-reference-cycles.md
+5 −1 src/ch16-01-threads.md
+20 −4 src/ch16-02-message-passing.md
+15 −3 src/ch16-03-shared-state.md
+13 −4 src/ch16-04-extensible-concurrency-sync-and-send.md
+1 −1 src/ch18-00-oop.md
+5 −1 src/ch18-02-trait-objects.md
+12 −3 src/ch18-03-oo-design-patterns.md
+2 −2 src/ch19-01-all-the-places-for-patterns.md
+36 −9 src/ch19-03-pattern-syntax.md
+5 −1 src/ch20-01-unsafe-rust.md
+16 −8 src/ch20-02-advanced-traits.md
+10 −2 src/ch20-03-advanced-types.md
+10 −2 src/ch20-05-macros.md
+10 −2 src/ch21-01-single-threaded.md
+5 −1 src/ch21-02-multithreaded.md
+39 −33 src/foreword.md
+7 −4 src/title-page.md
2 changes: 1 addition & 1 deletion src/doc/edition-guide
2 changes: 1 addition & 1 deletion src/doc/nomicon
Submodule nomicon updated 1 files
+1 −1 src/ffi.md
Loading