| Age | Commit message (Expand) | Author | Lines |
| 2024-10-14 | replace placeholder version | Josh Stone | -4/+4 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -1/+1 |
| 2024-09-19 | [Clippy] Swap `waker_clone_wake` to use diagnostic item instead of path | GnomedDev | -0/+1 |
| 2024-09-07 | Auto merge of #129941 - BoxyUwU:bump-boostrap, r=albertlarsan68 | bors | -5/+5 |
| 2024-09-03 | replace placeholder version | Boxy | -5/+5 |
| 2024-09-02 | Add `Waker::new` and `LocalWaker::new` | Kevin Mehall | -0/+55 |
| 2024-09-02 | Stabilize waker_getters | Kevin Mehall | -4/+4 |
| 2024-09-02 | Move the `data` and `vtable` methods from `RawWaker` to `Waker` | Kevin Mehall | -22/+22 |
| 2024-08-25 | link to Future::poll from the Poll docs | Jack O'Connor | -0/+2 |
| 2024-08-15 | Rollup merge of #128064 - ijackson:noop-waker-doc, r=workingjubilee | Jubilee | -1/+19 |
| 2024-08-15 | Add cautionary paragraph about noop wakers. | Ian Jackson | -0/+8 |
| 2024-08-09 | make LocalWaker::will_wake consistent with Waker::will_wake | Ralf Jung | -1/+7 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -2/+1 |
| 2024-07-28 | Rollup merge of #128228 - slanterns:const_waker, r=dtolnay,oli-obk | Guillaume Gomez | -12/+12 |
| 2024-07-28 | stabilize const_waker | Slanterns | -12/+12 |
| 2024-07-26 | Fix doc nits | John Arundel | -16/+17 |
| 2024-07-24 | Rollup merge of #128046 - GrigorenkoPV:90435, r=tgross35 | Matthias Krüger | -2/+2 |
| 2024-07-22 | LocalWaker docs: Make long-ago omitted but probably intended changes | Ian Jackson | -1/+3 |
| 2024-07-22 | Docs for Waker and LocalWaker: Add cross-refs in comment | Ian Jackson | -0/+8 |
| 2024-07-22 | Fix some `#[cfg_attr(not(doc), repr(..))]` | Pavel Grigorenko | -2/+2 |
| 2024-07-15 | lib: replace some `mem::forget`'s with `ManuallyDrop` | Pavel Grigorenko | -10/+5 |
| 2024-06-21 | Remove `feature(effects)` from the standard library | Deadbeef | -2/+2 |
| 2024-05-21 | Wrap Context.ext in AssertUnwindSafe | Jubilee Young | -4/+7 |
| 2024-04-17 | Rollup merge of #122201 - coolreader18:doc-clone_from, r=dtolnay | Matthias Krüger | -0/+36 |
| 2024-04-02 | set tracking issue | Justin Karneges | -4/+4 |
| 2024-03-29 | rustfmt | Justin Karneges | -2/+14 |
| 2024-03-29 | Add `Context::ext` | Justin Karneges | -3/+52 |
| 2024-03-09 | fix: remove memory leak due to missing drop implementation for local waker. A... | Tomás Vallotton | -5/+16 |
| 2024-03-08 | Document overrides of `clone_from()` | Noa | -0/+36 |
| 2024-02-15 | Auto merge of #119863 - tmiasko:will-wake, r=m-ou-se | bors | -1/+3 |
| 2024-02-14 | Rollup merge of #116387 - kpreid:wake-doc, r=cuviper | Oli Scherer | -3/+17 |
| 2024-02-11 | add comparison warning to RawWakerVTable as well | Ralf Jung | -0/+6 |
| 2024-02-10 | Additional doc links and explanation of `Wake`. | Kevin Reid | -3/+17 |
| 2024-01-20 | doc: fix some doctests after rebase | Tomás Vallotton | -3/+3 |
| 2024-01-20 | refactor: make waker mandatory. | Tomás Vallotton | -81/+18 |
| 2024-01-20 | chore: make method order consistent with waker | Tomás Vallotton | -13/+13 |
| 2024-01-20 | docs: remove recommendations to use LocalWaker in stable API documentation | Tomás Vallotton | -57/+46 |
| 2024-01-20 | fix: Apply suggestions from code review | tvallotton | -3/+2 |
| 2024-01-20 | doc: update thread safety explanation for RawWakerVTable and RawWaker. | Tomás Vallotton | -19/+43 |
| 2024-01-20 | chore: add and !Sync impls for LocalWaker as a stability guarantee. | Tomás Vallotton | -0/+5 |
| 2024-01-20 | fix: change issue number of waker_getters from #87021 to #96992. | Tomás Vallotton | -1/+1 |
| 2024-01-20 | chore: fix ci failures | Tomás Vallotton | -3/+3 |
| 2024-01-20 | feat: impl AsRef<LocalWaker> for Waker. | Tomás Vallotton | -0/+8 |
| 2024-01-20 | chore: add tracking issue number to local waker feature | Tomás Vallotton | -14/+14 |
| 2024-01-20 | fix: make LocalWake available in targets that don't support atomics by removi... | Tomás Vallotton | -2/+2 |
| 2024-01-20 | feat: add try_waker and From<&mut Context> for ContextBuilder to allow the ex... | Tomás Vallotton | -12/+67 |
| 2024-01-20 | refactor: remove in favor of and to make the API infallible. | Tomás Vallotton | -52/+29 |
| 2024-01-20 | perf: move null check from local_wake() to build() | Tomás Vallotton | -9/+16 |
| 2024-01-20 | feat: add LocalWaker type, ContextBuilder type, and LocalWake trait. | Tomás Vallotton | -24/+339 |
| 2024-01-17 | Change return type of unstable `Waker::noop()` from `Waker` to `&Waker`. | Kevin Reid | -5/+12 |