summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | | | | | | | | | | Unset GIT_DIR in pre-commit hookJoshua Nelson2020-10-071-4/+6
| | |_|/ / / / / / / / / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Auto merge of #75470 - estebank:bare-type-expr, r=davidtwcobors2020-10-087-17/+183
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Detect blocks that could be struct expr bodiesEsteban Küber2020-10-077-17/+183
| | |_|_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Auto merge of #77597 - simonvandel:uninhabited-hashset, r=jonas-schievinkbors2020-10-071-2/+7
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | |
| * | | | | | | | | | | | | perf: UninhabitedEnumBranching void n^2Simon Vandel Sillesen2020-10-071-2/+7
| | |_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | Auto merge of #76985 - hbina:clone_check, r=estebankbors2020-10-071-1/+13
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Prevent stackoverflowHanif Bin Ariffin2020-09-211-1/+13
* | | | | | | | | | | | | Auto merge of #77464 - ecstatic-morse:const-fn-impl-trait, r=oli-obkbors2020-10-0711-31/+34
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Update error code pageDylan MacKenzie2020-10-061-12/+4
| * | | | | | | | | | | | Make `impl Trait` unstable in all contextsDylan MacKenzie2020-10-051-6/+2
| * | | | | | | | | | | | Remove `fn` from feature nameDylan MacKenzie2020-10-0510-12/+12
| * | | | | | | | | | | | Make `min_const_fn` `impl Trait` test into a gate testDylan MacKenzie2020-10-052-2/+4
| * | | | | | | | | | | | Bless test outuptDylan MacKenzie2020-10-052-11/+10
| * | | | | | | | | | | | Use new feature gate in `impl-trait` testsDylan MacKenzie2020-10-054-4/+4
| * | | | | | | | | | | | Add requisite feature gates in the standard libraryDylan MacKenzie2020-10-051-0/+1
| * | | | | | | | | | | | Add `#![feature(const_fn_impl)]`Dylan MacKenzie2020-10-053-2/+15
* | | | | | | | | | | | | Auto merge of #77617 - AnthonyMikh:slice_windows_no_bounds_checking, r=lcnrbors2020-10-073-15/+52
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / |/| | | | | | | | | | | |
| * | | | | | | | | | | | Add codegen testAnthonyMikh2020-10-071-0/+35
| * | | | | | | | | | | | Eliminate bounds checking in slice::WindowsAnthonyMikh2020-10-062-15/+17
* | | | | | | | | | | | | Auto merge of #77341 - davidtwco:issue-73427-you-might-have-meant-variant, r=...bors2020-10-075-88/+258
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | resolve: improve "try using the enum's variant"David Wood2020-09-295-88/+258
* | | | | | | | | | | | | | Auto merge of #77595 - petrochenkov:asmident, r=oli-obkbors2020-10-075-20/+95
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | rustc_parse: Make `Parser::unexpected` public and use it in built-in macrosVadim Petrochenkov2020-10-063-5/+4
| * | | | | | | | | | | | | | builtin_macros: Fix use of interpolated identifiers in `asm!`Vadim Petrochenkov2020-10-063-16/+92
| | |_|_|_|/ / / / / / / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Auto merge of #77119 - GuillaumeGomez:unclosed-html-tag-lint, r=jyn514bors2020-10-0711-5/+428
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Enforce closing HTML tags to have a ">" characterGuillaume Gomez2020-10-033-2/+34
| * | | | | | | | | | | | | | Use char_indices() instead of chars() to prevent more than one-byte character...Guillaume Gomez2020-10-035-48/+43
| * | | | | | | | | | | | | | Correctly handle unicode characters and tags being open just before the end o...Guillaume Gomez2020-10-033-29/+72
| * | | | | | | | | | | | | | Don't warn if the tag is nested inside a <script> or inside a <style>Guillaume Gomez2020-10-032-1/+26
| * | | | | | | | | | | | | | Add test for invalid_html_tag lint in deny(rustdoc)Guillaume Gomez2020-10-032-1/+25
| * | | | | | | | | | | | | | Improve codeGuillaume Gomez2020-10-033-13/+58
| * | | | | | | | | | | | | | Fix visitor for invalid_html_tag lintGuillaume Gomez2020-10-032-2/+2
| * | | | | | | | | | | | | | Make invalid_html_tags lint only run on nightly and being allowed by defaultGuillaume Gomez2020-10-033-7/+12
| * | | | | | | | | | | | | | Improve invalid_html_tags lint spanGuillaume Gomez2020-10-033-82/+75
| * | | | | | | | | | | | | | Add test for unclosed_html_tag lintGuillaume Gomez2020-10-034-65/+89
| * | | | | | | | | | | | | | Add doc for invalid_html_tag lintGuillaume Gomez2020-10-031-0/+33
| * | | | | | | | | | | | | | Add `unclosed_html_tags` lintGuillaume Gomez2020-10-038-9/+213
| | |_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Auto merge of #77637 - ehuss:update-cargo, r=ehussbors2020-10-071-0/+0
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Update cargoEric Huss2020-10-061-0/+0
* | | | | | | | | | | | | | | Auto merge of #77626 - tamird:parse-scope-id, r=dtolnaybors2020-10-072-13/+27
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | Parse SocketAddrV6::scope_idTamir Duberstein2020-10-062-4/+15
| * | | | | | | | | | | | | | | Avoid unused returnTamir Duberstein2020-10-061-9/+12
* | | | | | | | | | | | | | | | Auto merge of #74194 - mbrubeck:slice-eq, r=sfacklerbors2020-10-072-1/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Add PartialEq impls for Vec <-> sliceMatt Brubeck2020-08-272-1/+4
* | | | | | | | | | | | | | | | | Auto merge of #77630 - Dylan-DPC:rollup-kfwl55z, r=Dylan-DPCbors2020-10-0663-259/+408
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | Rollup merge of #77624 - akoptelov:c-all-targets-fix, r=jyn514Dylan DPC2020-10-071-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | | | Add c as a shorthand check alternative for new options #77603Alexander Koptelov2020-10-061-1/+1
| * | | | | | | | | | | | | | | | | Rollup merge of #77614 - khyperia:set_span, r=eddybDylan DPC2020-10-073-1/+6
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | | | | Let backends access span informationkhyperia2020-10-063-1/+6
| | | |_|_|_|_|_|/ / / / / / / / / / | | |/| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | | | Rollup merge of #77605 - da-x:fix-rustc-def-path, r=petrochenkovDylan DPC2020-10-074-5/+6
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \