| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-07-03 | setup CI and tidy to use typos for spellchecking and fix few typos | klensy | -1/+1 | |
| 2025-05-27 | Make the `dangerous_implicit_autorefs` lint deny-by-default | Urgau | -2/+2 | |
| 2025-05-14 | Use more subdiagnostics and reword the overloaded deref note | Urgau | -9/+20 | |
| 2025-05-14 | Improve `dangerous_implicit_aurorefs` diagnostic output | Urgau | -11/+16 | |
| 2025-05-07 | fix typo in autorefs lint doc example | Joseph Perez | -7/+7 | |
| The documentation is talking about other way using only raw pointers, but the example was use `std::slice::from_raw_parts_mut` which also create a reference. `std::ptr::slice_from_raw_parts_mut` should be used instead, and it also highlights the benefit of raw pointer manipulation compared to dereference, as the function doesn't need to be unsafe anymore. Moreover, [`unsafe_op_in_unsafe_fn`](https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html) warning has been enabled since Edition 2024, so I've updated the examples to use unsafe blocks. | ||||
| 2025-04-29 | Delay checking of `#[rustc_no_implicit_autorefs]` for reason | Urgau | -4/+11 | |
| 2025-04-20 | Implement lint against dangerous implicit autorefs | Urgau | -0/+153 | |
