summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Simplify use of `map_or`oli-obk-patch-1Oli Scherer2022-01-201-1/+1
* Auto merge of #92138 - AngelicosPhosphoros:try_smarter_vec_from_iter_48994_2,...bors2022-01-202-3/+9
|\
| * Improve estimation of capacity in Vec::from_iterAngelicosPhosphoros2022-01-192-3/+9
* | Auto merge of #93085 - matthiaskrgr:rollup-mgpu2ju, r=matthiaskrgrbors2022-01-1926-197/+247
|\ \
| * \ Rollup merge of #93077 - lcnr:write_substs, r=oli-obkMatthias Krüger2022-01-194-8/+4
| |\ \
| | * | remove `is_noop`lcnr2022-01-194-8/+4
| | |/
| * | Rollup merge of #93065 - dtolnay:ringbuffer, r=lcnrMatthias Krüger2022-01-193-112/+103
| |\ \
| | * | Eliminate left and right cursors in favor of ring bufferDavid Tolnay2022-01-182-30/+33
| | * | Eliminate eof token stateDavid Tolnay2022-01-183-42/+44
| | * | Simplify the buffer push done by scan_breakDavid Tolnay2022-01-182-8/+3
| | * | Eliminate a check_stack call on an empty scan stackDavid Tolnay2022-01-181-1/+1
| | * | Index a single time in check_stackDavid Tolnay2022-01-181-4/+5
| | * | Implement check_stack nonrecursivelyDavid Tolnay2022-01-181-9/+10
| | * | Implement check_stream nonrecursivelyDavid Tolnay2022-01-181-3/+3
| | * | Replace `if` + `unwrap` with `if let` in check_stackDavid Tolnay2022-01-181-2/+1
| | * | Ensure Printer buf is always indexed using self.left or self.rightDavid Tolnay2022-01-181-3/+3
| | * | Inline Printer's scan_pop_bottom methodDavid Tolnay2022-01-181-5/+1
| | * | Inline Printer's scan_top methodDavid Tolnay2022-01-181-5/+1
| | * | Inline Printer's scan_pop methodDavid Tolnay2022-01-181-7/+3
| | * | Simplify ring buffer pushesDavid Tolnay2022-01-182-7/+12
| | * | Inline Printer's scan_push methodDavid Tolnay2022-01-181-8/+6
| | * | Inline Printer's advance_right methodDavid Tolnay2022-01-181-9/+8
| * | | Rollup merge of #93005 - GuillaumeGomez:templates-in-html, r=notriddleMatthias Krüger2022-01-196-1/+5
| |\ \ \
| | * | | Move back templates into html folderGuillaume Gomez2022-01-196-1/+5
| | | |/ | | |/|
| * | | Rollup merge of #92800 - ehuss:docs-fallback, r=Mark-SimulacrumMatthias Krüger2022-01-196-46/+69
| |\ \ \
| | * | | Add assert that fallback targets must be available.Eric Huss2022-01-191-1/+4
| | * | | Disable docs on aarch64-apple-darwin.Eric Huss2022-01-173-3/+3
| | * | | Remove VERSION from manifest readme docs.Eric Huss2022-01-171-2/+1
| | * | | Add manifest docs fallback.Eric Huss2022-01-172-41/+62
| * | | | Rollup merge of #92630 - steffahn:lift_bounds_on_BuildHasherDefault, r=yaahcMatthias Krüger2022-01-193-11/+8
| |\ \ \ \
| | * | | | Also change PhantomData parameter of iter::Empty, and future::PendingFrank Steffahn2022-01-072-10/+7
| | * | | | change PhantomData type for BuildHasherDefaultFrank Steffahn2022-01-071-1/+1
| * | | | | Rollup merge of #92316 - petrochenkov:extmangle, r=wesleywiserMatthias Krüger2022-01-194-19/+58
| |\ \ \ \ \ |/ / / / / /
| * | | | | mangling_v0: Skip extern blocks during manglingVadim Petrochenkov2022-01-083-5/+5
| * | | | | mangling_v0: Add a test for mangling of foreign typesVadim Petrochenkov2022-01-082-0/+39
| * | | | | mangling_v0: Update tests for the rust-demangler toolVadim Petrochenkov2022-01-081-16/+16
* | | | | | Auto merge of #93069 - matthiaskrgr:rollup-gx1vkp7, r=matthiaskrgrbors2022-01-1954-1683/+2041
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | |
| * | | | | Rollup merge of #93062 - ehuss:update-books, r=ehussMatthias Krüger2022-01-194-0/+0
| |\ \ \ \ \
| | * | | | | Update booksEric Huss2022-01-184-0/+0
| | | |_|_|/ | | |/| | |
| * | | | | Rollup merge of #93051 - m-ou-se:is-some-with, r=yaahcMatthias Krüger2022-01-192-0/+70
| |\ \ \ \ \
| | * | | | | Fix is_some_with tests.Mara Bos2022-01-192-8/+13
| | * | | | | Improve is_err_with example.Mara Bos2022-01-181-6/+8
| | * | | | | Add is_some_with tracking issue number.Mara Bos2022-01-182-3/+3
| | * | | | | Add Result::{is_ok_with, is_err_with}.Mara Bos2022-01-181-0/+42
| | * | | | | Add Option::is_some_with.Mara Bos2022-01-181-0/+21
| * | | | | | Rollup merge of #93041 - pierwill:rm-unused-defid-ords, r=cjgillotMatthias Krüger2022-01-191-16/+6
| |\ \ \ \ \ \
| | * | | | | | Remove some unused `Ord` derivations based on `DefId`pierwill2022-01-182-17/+7
| * | | | | | | Rollup merge of #92920 - dtolnay:printtidy, r=cjgillotMatthias Krüger2022-01-193-1200/+1220
| |\ \ \ \ \ \ \
| | * | | | | | | Move item-related pretty printing functions to moduleDavid Tolnay2022-01-182-636/+646
| | * | | | | | | Move expr-related pretty printing functions to moduleDavid Tolnay2022-01-182-564/+574
| | | |/ / / / / | | |/| | | | |