| Age | Commit message (Expand) | Author | Lines |
| 2024-12-09 | Unconditionally error at definition if default field value has const errors | Esteban Küber | -107/+19 |
| 2024-12-09 | Disallow `#[default] Variant {}` regardless of feature flag | Esteban Küber | -3/+16 |
| 2024-12-09 | review comments: rewordings | Esteban Küber | -6/+6 |
| 2024-12-09 | Provide diagnostic for `Struct(a, .., z)` expression | Esteban Küber | -0/+31 |
| 2024-12-09 | Detect `struct S(ty = val);` | Esteban Küber | -9/+53 |
| 2024-12-09 | Introduce `default_field_values` feature | Esteban Küber | -172/+644 |
| 2024-12-09 | Apply suggestions from code review | Sven Kanoldt | -8/+8 |
| 2024-12-09 | Fix typo in RFC mention 3598 -> 3593 | Esteban Küber | -1/+1 |
| 2024-12-09 | Auto merge of #134064 - jieyouxu:revert-131669, r=ChrisDenton | bors | -363/+67 |
| 2024-12-09 | Add test to check unicode identifier version | Eric Huss | -0/+2 |
| 2024-12-09 | fix ICE on type error in promoted | Ralf Jung | -37/+50 |
| 2024-12-09 | interpret: clean up deduplicating allocation functions | Ralf Jung | -34/+21 |
| 2024-12-09 | dataflow_const_prop: do not eval a ptr address in SwitchInt | DianQK | -2/+7 |
| 2024-12-09 | Remove an out-of-date comment. | Nicholas Nethercote | -4/+0 |
| 2024-12-09 | Move `write_graphviz_results` from `results.rs` to `graphviz.rs`. | Nicholas Nethercote | -187/+182 |
| 2024-12-09 | Revert #131669 due to ICEs | 许杰友 Jieyou Xu (Joe) | -363/+67 |
| 2024-12-09 | interpret: reduce usage of TypingEnv::fully_monomorphized | Ralf Jung | -8/+9 |
| 2024-12-09 | Auto merge of #133891 - nnethercote:MixedBitSet, r=Mark-Simulacrum | bors | -169/+347 |
| 2024-12-09 | Auto merge of #134052 - matthiaskrgr:rollup-puxwqrk, r=matthiaskrgr | bors | -249/+236 |
| 2024-12-09 | Rollup merge of #133567 - bjorn3:various_cleanups, r=cjgillot | Matthias Krüger | -249/+236 |
| 2024-12-09 | Remove `ChunkedBitSet` impls that are no longer needed. | Nicholas Nethercote | -24/+2 |
| 2024-12-09 | Use `MixedBitSet` instead of `ChunkedBitSet` in `fmt.rs`. | Nicholas Nethercote | -6/+6 |
| 2024-12-09 | Use `BitSet` in `SparseBitMatrix`. | Nicholas Nethercote | -13/+13 |
| 2024-12-09 | Add the `power8-crypto` target feature | Sayantan Chakraborty | -0/+4 |
| 2024-12-08 | Use SourceMap to load debugger visualizer files | clubby789 | -4/+3 |
| 2024-12-08 | Use ensure for analysis calls | bjorn3 | -2/+2 |
| 2024-12-08 | Rollup merge of #134020 - scottmcm:fix-a-fixme, r=jieyouxu | Matthias Krüger | -91/+75 |
| 2024-12-08 | Rollup merge of #133993 - LuanOldCode:fix-e0571-typo, r=compiler-errors | Matthias Krüger | -1/+1 |
| 2024-12-08 | Rollup merge of #133424 - Nadrieril:guard-patterns-parsing, r=fee1-dead | Matthias Krüger | -53/+101 |
| 2024-12-08 | Rollup merge of #133992 - compiler-errors:walk-fully, r=jieyouxu | Matthias Krüger | -0/+4 |
| 2024-12-08 | Rollup merge of #133861 - shamb0:refactor_InterpCx_allocate_str, r=RalfJung | Matthias Krüger | -13/+32 |
| 2024-12-08 | Rollup merge of #133767 - estebank:multiple-dep-version-tests, r=Nadrieril | Matthias Krüger | -21/+117 |
| 2024-12-08 | Rollup merge of #131669 - niacdoial:linting-ptrdyn-ffi, r=workingjubilee | Matthias Krüger | -67/+363 |
| 2024-12-08 | coverage: Unused functions don't need to store `CoverageIdsInfo` | Zalathar | -13/+13 |
| 2024-12-08 | coverage: Remove FunctionCoverageCollector | Zalathar | -70/+17 |
| 2024-12-08 | coverage: Use a query to find counters/expressions that must be zero | Zalathar | -117/+117 |
| 2024-12-08 | coverage: Move `CoverageIdsInfo` into `mir::coverage` | Zalathar | -35/+34 |
| 2024-12-07 | Remove unnecessary `int_type_width_signed` function | Scott McMurray | -91/+75 |
| 2024-12-08 | Don't use AsyncFnOnce::CallOnceFuture bounds for signature deduction | Michael Goulet | -8/+4 |
| 2024-12-07 | Tweak wording | Esteban Küber | -5/+5 |
| 2024-12-07 | Do not talk about "trait `<Foo = Bar>`" | Esteban Küber | -3/+11 |
| 2024-12-07 | Account for `impl Trait` in "add bound" suggestion message | Esteban Küber | -0/+6 |
| 2024-12-07 | Mention type parameter in more cases and don't suggest ~const bound already t... | Esteban Küber | -20/+14 |
| 2024-12-07 | Use trait name instead of full constraint in suggestion message | Esteban Küber | -23/+61 |
| 2024-12-07 | Add test for lack of suggestion in stable | Esteban Küber | -2/+2 |
| 2024-12-07 | reword trait bound suggestion message to include the bounds | Esteban Küber | -14/+31 |
| 2024-12-07 | Don't suggest restricting bound with unstable traits on stable | Esteban Küber | -8/+24 |
| 2024-12-07 | Make `Copy` unsafe to implement for ADTs with `unsafe` fields | Jack Wrenn | -54/+96 |
| 2024-12-07 | Add more info on type/trait mismatches for different crate versions | Esteban Küber | -21/+117 |
| 2024-12-07 | Reduce indentation in run_compiler | bjorn3 | -24/+23 |