| Age | Commit message (Expand) | Author | Lines |
| 2025-01-14 | std: lazily allocate the main thread handle | joboet | -18/+21 |
| 2025-01-01 | Try to write the panic message with a single `write_all` call | John Kåre Alsaker | -1/+17 |
| 2024-12-23 | Use `#[derive(Default)]` instead of manually implementing it | Esteban Küber | -7/+2 |
| 2024-12-05 | Added struct `fmt::FormattingOptions` | Elias Holzmann | -1/+1 |
| 2024-11-28 | Share inline(never) generics across crates | Mark Rousskov | -0/+16 |
| 2024-09-26 | Rollup merge of #130846 - ChrisDenton:revert-break, r=Noratrieb | Jubilee | -17/+1 |
| 2024-09-25 | Use `&raw` in the standard library | Josh Stone | -1/+1 |
| 2024-09-25 | Revert Break into the debugger on panic (129019) | Chris Denton | -17/+1 |
| 2024-09-08 | Auto merge of #129019 - kromych:master, r=workingjubilee | bors | -1/+17 |
| 2024-09-05 | Break into the debugger (if attached) on panics (Windows, macOS, Linux, FreeBSD) | kromych | -1/+17 |
| 2024-09-02 | Auto merge of #129063 - the8472:cold-opt-size, r=Amanieu | bors | -2/+6 |
| 2024-08-24 | panicking: improve hint for Miri's RUST_BACKTRACE behavior | Ralf Jung | -1/+1 |
| 2024-08-14 | apply #[optimize(size)] to #[cold] ones and part of the panick machinery | The 8472 | -2/+6 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -12/+9 |
| 2024-07-12 | fix interleaved panic output | jyn | -2/+6 |
| 2024-06-17 | Add PanicMessage type for PanicInfo::message(). | Mara Bos | -5/+8 |
| 2024-06-16 | std: move `sys_common::backtrace` to `sys` | joboet | -3/+3 |
| 2024-06-11 | Formatting. | Mara Bos | -1/+3 |
| 2024-06-11 | Fix display of panic message in recursive panic. | Mara Bos | -9/+6 |
| 2024-06-11 | Rename std::panic::PanicInfo to PanicHookInfo. | Mara Bos | -10/+15 |
| 2024-06-11 | Reorder body of begin_panic for consistency. | Mara Bos | -17/+11 |
| 2024-06-11 | Impl Display for PanicPayload to simplify things. | Mara Bos | -9/+28 |
| 2024-06-11 | Use unnamed lifetimes for [..]Payload impl blocks. | Mara Bos | -7/+3 |
| 2024-06-11 | Move downcasting panic payload to str to a function. | Mara Bos | -7/+11 |
| 2024-06-11 | Remove std::panic::PanicInfo::internal_constructor+set_payload. | Mara Bos | -9/+4 |
| 2024-06-11 | Split core's PanicInfo and std's PanicInfo. | Mara Bos | -21/+16 |
| 2024-04-18 | when suggesting RUST_BACKTRACE=1, add a special note for Miri's env var isola... | Ralf Jung | -0/+7 |
| 2024-04-11 | Rollup merge of #122882 - Zoxc:panic-output-panic, r=Amanieu | Matthias Krüger | -4/+4 |
| 2024-03-31 | std: move `thread::current` TLS variable out of `thread_info` | joboet | -2/+1 |
| 2024-03-24 | panic-in-panic-hook: formatting a message that's just a string is risk-free | Ralf Jung | -5/+9 |
| 2024-03-23 | Rollup merge of #122930 - RalfJung:panic-in-panic-fmt, r=Amanieu | Matthias Krüger | -1/+7 |
| 2024-03-23 | add panic location to 'panicked while processing panic' | Ralf Jung | -1/+7 |
| 2024-03-22 | Avoid a panic in `set_output_capture` in the default panic handler | John Kåre Alsaker | -4/+4 |
| 2024-03-19 | SeqCst->Relaxed for FIRST_PANIC. | Mara Bos | -1/+1 |
| 2024-02-26 | rename 'try' intrinsic to 'catch_unwind' | Ralf Jung | -4/+4 |
| 2024-02-24 | library: use `addr_of!` | Pavel Grigorenko | -1/+1 |
| 2024-02-23 | Get rid of some `#[allow(static_mut_refs)]` | Pavel Grigorenko | -3/+0 |
| 2024-02-18 | Improve wording of static_mut_ref | Obei Sideg | -2/+3 |
| 2024-02-08 | Step all bootstrap cfgs forward | Mark Rousskov | -1/+1 |
| 2024-01-07 | Update test for `E0796` and `static_mut_ref` lint | Obei Sideg | -0/+2 |
| 2023-12-15 | Cfg remove lang items in doctest | Cameron Steffen | -2/+2 |
| 2023-10-29 | Increase the reach of panic_immediate_abort | Ben Kimock | -1/+59 |
| 2023-09-21 | Rollup merge of #116008 - m-ou-se:boxmeup, r=oli-obk | Matthias Krüger | -21/+21 |
| 2023-09-20 | Rename BoxMeUp to PanicPayload. | Mara Bos | -21/+21 |
| 2023-09-07 | Don't modify libstd to dump rustc ICEs | Michael Goulet | -29/+7 |
| 2023-08-27 | avoid triple-backtrace due to panic-during-cleanup | Ralf Jung | -6/+30 |
| 2023-07-29 | Change default panic handler message format. | Mara Bos | -1/+1 |
| 2023-07-27 | When flushing delayed span bugs, write to the ICE dump file even if it doesn'... | Esteban Küber | -1/+1 |
| 2023-07-19 | On nightly, dump ICE backtraces to disk | Esteban Küber | -7/+31 |
| 2023-05-27 | Rework handling of recursive panics | Amanieu d'Antras | -53/+67 |