| Age | Commit message (Expand) | Author | Lines |
| 2023-10-13 | Implement `OnceCell/Lock::try_insert()` | daxpedda | -3/+40 |
| 2023-10-06 | Minor doc clarification in Once::call_once | Peter Hall | -1/+1 |
| 2023-09-19 | Replace 'mutex' with 'lock' in RwLock documentation | Kriskras99 | -2/+2 |
| 2023-08-18 | Remove Drop impl of mpsc Receiver and (Sync)Sender | Ben Schulz | -15/+0 |
| 2023-08-12 | Update Sender documentation for Sync | Gurinder Singh | -3/+2 |
| 2023-08-01 | [library/std] Replace condv while loop with `cvar.wait_while`. | Taras Tsugrii | -5/+2 |
| 2023-07-31 | Rollup merge of #109318 - joboet:better_fmt_placeholder, r=dtolnay | Matthias Krüger | -20/+12 |
| 2023-07-30 | Rollup merge of #109075 - joboet:lazylock_backtrace, r=workingjubilee | Jubilee | -0/+9 |
| 2023-07-30 | Fix the example in document for WaitTimeoutResult::timed_out | yukang | -10/+8 |
| 2023-07-25 | docs(LazyLock): add example pass local LazyLock variable to struct | DragonBillow | -0/+20 |
| 2023-07-19 | avoid tls access while iterating through mpsc thread entries | Ibraheem Ahmed | -20/+26 |
| 2023-07-18 | support for mips32r6 as a target_arch value | chenx97 | -0/+2 |
| 2023-07-18 | support for mips64r6 as a target_arch value | chenx97 | -0/+2 |
| 2023-07-12 | Replace version placeholder to 1.72 | Mark Rousskov | -1/+1 |
| 2023-06-30 | std docs: factorize literal in Barrier example | Guilliam Xavier | -6/+8 |
| 2023-06-10 | implement `Sync` for `mpsc::Sender` | Ibraheem Ahmed | -2/+2 |
| 2023-06-01 | doc: improve explanation | Tshepang Mbambo | -1/+1 |
| 2023-05-03 | Remove unnecessary Send bound | Gil Shoshan | -3/+3 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -21/+21 |
| 2023-04-27 | std: use `LazyLock` to lazily resolve backtraces | joboet | -0/+9 |
| 2023-04-26 | Rollup merge of #110419 - jsoref:spelling-library, r=jyn514 | Matthias Krüger | -2/+2 |
| 2023-04-26 | Spelling library/ | Josh Soref | -2/+2 |
| 2023-04-24 | Auto merge of #106152 - SUPERCILEX:lazycell, r=Amanieu | bors | -1/+37 |
| 2023-04-19 | std: make `Debug` representations of `[Lazy, Once]*[Cell, Lock]` consistent w... | joboet | -20/+12 |
| 2023-04-16 | rm const traits in libcore | Deadbeef | -2/+1 |
| 2023-04-14 | Add Lazy{Cell,Lock}::into_inner | Alex Saveau | -1/+37 |
| 2023-04-08 | sync::mpsc: synchronize receiver disconnect with initialization | Petros Angelatos | -0/+12 |
| 2023-03-29 | Documentation updates to better share the purpose of OnceCell/OnceLock | Trevor Gross | -1/+4 |
| 2023-03-29 | Stabilize a portion of 'once_cell' | Trevor Gross | -51/+36 |
| 2023-03-24 | Rollup merge of #109142 - the8472:mutex-block-docs, r=cuviper | Matthias Krüger | -7/+17 |
| 2023-03-21 | Rollup merge of #108164 - joboet:discard_messages_mpmc_array, r=Amanieu | Matthias Krüger | -26/+98 |
| 2023-03-20 | Apply suggestions from code review | the8472 | -3/+3 |
| 2023-03-20 | Add block-based mutex unlocking example | The 8472 | -7/+17 |
| 2023-03-15 | unequal → not equal | gimbles | -1/+1 |
| 2023-03-14 | std: leak remaining messages in bounded channel if message destructor panics | joboet | -66/+42 |
| 2023-02-26 | std: disconnect senders before discarding messages | joboet | -4/+5 |
| 2023-02-18 | Auto merge of #107329 - joboet:optimize_lazylock, r=m-ou-se | bors | -17/+87 |
| 2023-02-17 | std: add regression test for #107466 | joboet | -0/+13 |
| 2023-02-17 | std: drop all messages in bounded channel when destroying the last receiver | joboet | -27/+109 |
| 2023-01-27 | std: add safety comment in `LazyLock::get` | joboet | -1/+8 |
| 2023-01-27 | std: fix `Debug` implementation on `LazyLock` | joboet | -8/+5 |
| 2023-01-26 | std: optimize `LazyLock` size | joboet | -17/+83 |
| 2023-01-14 | remove optimistic spinning from `mpsc::SyncSender` | Ibraheem Ahmed | -23/+7 |
| 2023-01-13 | Rollup merge of #106701 - ibraheemdev:sync-sender-spin, r=Amanieu | Matthias Krüger | -33/+49 |
| 2023-01-11 | rework and document backoff behavior of `sync::mpsc` | Ibraheem Ahmed | -31/+30 |
| 2023-01-10 | add `SyncSender::send_timeout` test | Ibraheem Ahmed | -1/+18 |
| 2023-01-10 | fix `SyncSender` spinning behavior | Ibraheem Ahmed | -1/+1 |
| 2023-01-09 | std test: better type name, clarifying comment | Ralf Jung | -1/+1 |
| 2023-01-04 | Update rand in the stdlib tests, and remove the getrandom feature from it | Thom Chiovoloni | -2/+2 |
| 2022-12-30 | Auto merge of #105651 - tgross35:once-cell-inline, r=m-ou-se | bors | -1/+21 |