| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2019-06-26 | Update src/borrow_check/region_inference/lifetime_parameters.md | Niko Matsakis | -1/+1 | |
| Co-Authored-By: lqd <remy.rakic+github@gmail.com> | ||||
| 2019-06-26 | Update src/borrow_check/region_inference/constraint_propagation.md | Niko Matsakis | -1/+1 | |
| Co-Authored-By: lqd <remy.rakic+github@gmail.com> | ||||
| 2019-06-26 | adjust overview slightly | Niko Matsakis | -13/+14 | |
| 2019-06-26 | describe region inference and member constraints in some detail | Niko Matsakis | -68/+466 | |
| 2019-06-26 | start filling out the constraint propagation chapter in more detail | Niko Matsakis | -1/+144 | |
| 2019-06-26 | break out parts of the region inference chapter into sub-chapters | Niko Matsakis | -457/+461 | |
| 2019-06-26 | fix typo | Niko Matsakis | -1/+1 | |
| 2019-06-26 | avoid ftp links | Mark Mansi | -2/+2 | |
| 2019-06-26 | fix broken links | Mark Mansi | -5/+6 | |
| 2019-06-26 | add bibligraphy appendix | Mark Mansi | -0/+90 | |
| 2019-06-25 | Auto merge of #60732 - jswrenn:arbitrary_enum_discriminant, r=pnkfelix | bors | -0/+37 | |
| Implement arbitrary_enum_discriminant Implements RFC rust-lang/rfcs#2363 (tracking issue #60553). | ||||
| 2019-06-24 | Update to mdbook-linkcheck 0.3.0 | Who? Me?! | -1/+1 | |
| 2019-06-24 | Update mdbook | Who? Me?! | -2/+2 | |
| 2019-06-24 | Change stage0 cfg_attr to bootstrap | flip1995 | -1/+1 | |
| 2019-06-24 | fix compiler-team | b41sh | -1/+1 | |
| 2019-06-22 | Remove FnBox. | Mazdak Farrokhzad | -35/+1 | |
| 2019-06-22 | Rollup merge of #61267 - michaelwoerister:update-xlto-table, r=alexcrichton | Mazdak Farrokhzad | -2/+3 | |
| rustc-book: Update the rustc/clang compatibility table for xLTO. Firefox is using these combinations successfully. | ||||
| 2019-06-21 | Implement arbitrary_enum_discriminant | John Wrenn | -0/+37 | |
| 2019-06-21 | rustc-book: Add documentation on how to use PGO. | Michael Woerister | -0/+154 | |
| 2019-06-20 | Update mdbook | Eric Huss | -0/+0 | |
| 2019-06-20 | Added Rustc Debugger Support Chapter | Amanjeev Sethi | -0/+322 | |
| 2019-06-19 | Closures implement Copy and Clone, generators don't | Jake Goulding | -1/+1 | |
| 2019-06-18 | syntax: Factor out common fields from `SyntaxExtension` variants | Vadim Petrochenkov | -1/+1 | |
| 2019-06-15 | fix typos | Mark Mansi | -2/+2 | |
| 2019-06-15 | Update for TyCtxt<'a, 'gcx, 'tcx> -> TyCtxt<'tcx>. | Eduard-Mihai Burtescu | -76/+27 | |
| 2019-06-15 | fix ci failures, typos, broken links | Mark Mansi | -4/+4 | |
| 2019-06-15 | Some edits to address review comments | Mark Mansi | -60/+114 | |
| 2019-06-15 | Notes about closure de-sugaring | Blitzerr | -0/+160 | |
| 2019-06-15 | add note about rebuilding llvm | Mark Mansi | -1/+3 | |
| 2019-06-15 | Changes to config.toml require a clean | Jonathan Behrens | -0/+3 | |
| 2019-06-15 | type_alias_enum_variants: Remove from unstable book. | Mazdak Farrokhzad | -36/+0 | |
| 2019-06-13 | Fix a few typos in type inference chapter | Jonas Schievink | -3/+3 | |
| Also try to test the top example | ||||
| 2019-06-12 | Add triagebot | Santiago Pastorino | -0/+1 | |
| 2019-06-12 | Rollup merge of #61734 - mati865:books, r=alexcrichton | Mazdak Farrokhzad | -0/+0 | |
| Migrate rust-by-example to MdBook2 | ||||
| 2019-06-11 | Update how-to-build-and-run.md | Who? Me?! | -1/+2 | |
| 2019-06-11 | Update how-to-build-and-run.md | Who? Me?! | -7/+5 | |
| 2019-06-11 | Update compiler-debugging.md | Who? Me?! | -3/+4 | |
| 2019-06-11 | use debug instead of debuginfo-level | Who? Me?! | -3/+4 | |
| 2019-06-11 | Migrate rust-by-example to MdBook2 | Mateusz MikuĊa | -0/+0 | |
| 2019-06-10 | Implement RFC 2645 (transparent enums and unions) | Michael Bradshaw | -0/+176 | |
| Tracking issue: #60405 | ||||
| 2019-06-09 | Auto merge of #61229 - Centril:stabilize-repr_align_enum, r=nagisa | bors | -42/+0 | |
| Stabilize #![feature(repr_align_enum)] in Rust 1.37.0 On an `enum` item, you may now write: ```rust #[repr(align(X))] enum Foo { // ... } ``` This has equivalent effects to first defining: ```rust #[repr(align(X))] struct AlignX<T>(T); ``` and then using `AlignX<Foo>` in `Foo`'s stead. r? @nagisa | ||||
| 2019-06-08 | Auto merge of #61672 - Centril:rollup-jxo89ir, r=Centril | bors | -6/+4 | |
| Rollup of 6 pull requests Successful merges: - #61646 (Remove useless allocations in macro_rules follow logic.) - #61658 (remove useless ident() functions in const tests) - #61660 (Minimize use of `#![feature(custom_attribute)]`) - #61666 (Add test for trait ICE) - #61669 ( syntax: Remove `Deref` impl from `Token`) - #61670 (Update RLS) Failed merges: r? @ghost | ||||
| 2019-06-08 | Remove some more `#![feature(custom_attribute)]`s | Vadim Petrochenkov | -6/+4 | |
| 2019-06-08 | Auto merge of #61529 - ehuss:update-books, r=GuillaumeGomez | bors | -0/+0 | |
| Update books ## reference 2 commits in 862b669c395822bb0938781d74f860e5762ad4fb..f8ae436d936f6f4891d3c1bbb1af5865eb8aeadb 2019-05-04 23:41:35 -0700 to 2019-05-31 14:59:12 +0200 - Document that literals with any suffixes are valid as tokens (rust-lang-nursery/reference#612) - Fix example code of derive macro (rust-lang-nursery/reference#611) ## book 2 commits in 29fe982990e43b9367be0ff47abc82fb2123fd03..62a8c6f25fbd981c80a046f3b04be9684749af3b 2019-05-15 17:48:40 -0400 to 2019-05-28 15:48:23 -0400 - Remove snapshots checked in layout - Remove snapshots that I've approved in layout ## rust-by-example 5 commits in 811c697b232c611ed754d279ed20643a0c4096f6..18566f4dedc3ef5bf61f5f85685d5966db99cc11 2019-04-28 18:56:42 -0300 to 2019-05-30 19:23:24 -0300 - Fixed wording in the `Seconds` struct description. (rust-lang/rust-by-example#1195) - Fix usage of the word "elision" (rust-lang/rust-by-example#1191) - Reword "Flow Control" to "Flow of Control" (rust-lang/rust-by-example#1190) - Copy edits to chapter 1 (rust-lang/rust-by-example#1189) - Fix typo in a mod/visibility.md (rust-lang/rust-by-example#1188) ## rustc-guide 9 commits in 3cb727b62b953d59b4360d39aa68b6dc8f157655..3ac9cfc9c9ab2e366feebf18718112737f572352 2019-05-07 09:53:32 -0500 to 2019-06-02 19:36:58 -0500 - Update information about debuginfo configuration - fix long line - Fixed misspelling - Add more info subsection with links to forge and rustc api docs (rust-lang/rustc-guide#324) - Renamed the file and title of the diagnostics chapter. - Added rustc phases diagram and explanation - Mention running tests for subdirectories - Fixed links broken by merging chalks rules and solve - Add documentation about profile-guided optimization. ## embedded-book 1 commits in 9858872bd1b7dbba5ec27dc30d34eba00acd7ef9..f0c75b75f9c18537b78f5d17c1015247e9a49c86 2019-05-02 18:56:54 +0000 to 2019-06-03 10:49:02 +0000 - Qemu md changes (rust-embedded/book#193) | ||||
| 2019-06-07 | Replaced tabs with spaces | mdsimmo | -77/+77 | |
| 2019-06-07 | correct indentation | mdsimmo | -80/+77 | |
| Indentation consistently 4 spaces and Part 1/Part2 contain everything else | ||||
| 2019-06-06 | Some code cleanup and tidy/test fixes | Vadim Petrochenkov | -3/+3 | |
| 2019-06-04 | Update books | Eric Huss | -0/+0 | |
| 2019-06-02 | Update information about debuginfo configuration | Vadim Petrochenkov | -10/+8 | |
| 2019-06-02 | fix long line | mark | -1/+2 | |
