| Age | Commit message (Expand) | Author | Lines |
| 2024-04-10 | Add basic f16 and f128 modules | Trevor Gross | -0/+36 |
| 2024-04-10 | Add basic library support for `f16` and `f128` | Trevor Gross | -11/+20 |
| 2024-04-10 | Revert "Put basic impls for f16 and f128 behind cfg(not(bootstrap))" | Trevor Gross | -21/+6 |
| 2024-04-09 | Fix typo in `Future::poll()` docs | Jules Bertholet | -1/+1 |
| 2024-04-08 | Stabilize `cstr_count_bytes` | Trevor Gross | -3/+1 |
| 2024-04-08 | Rollup merge of #123564 - scottmcm:step-by-div-zero, r=joboet | Matthias Krüger | -31/+49 |
| 2024-04-08 | Auto merge of #120131 - oli-obk:pattern_types_syntax, r=compiler-errors | bors | -0/+17 |
| 2024-04-08 | Rollup merge of #123595 - balaganesh102004:master, r=joboet | Matthias Krüger | -1/+1 |
| 2024-04-08 | Add pattern types to parser | Oli Scherer | -0/+17 |
| 2024-04-07 | Fix typo in library/core/src/iter/traits/iterator.rs | Gabriel Dolberg | -1/+1 |
| 2024-04-07 | Made changes in documentation | BALAGANESH | -1/+1 |
| 2024-04-07 | Auto merge of #123561 - saethlin:str-unchecked-sub-index, r=scottmcm | bors | -6/+9 |
| 2024-04-07 | Rollup merge of #123522 - dtolnay:constatomicintoinner, r=Nilstrieb | Matthias Krüger | -6/+48 |
| 2024-04-07 | Rollup merge of #123411 - saethlin:ub-checks, r=Urgau,RalfJung | Matthias Krüger | -7/+7 |
| 2024-04-06 | Don't emit divide-by-zero panic paths in `StepBy::len` | Scott McMurray | -31/+49 |
| 2024-04-06 | Use unchecked_sub in str indexing | Ben Kimock | -6/+9 |
| 2024-04-06 | Rollup merge of #123541 - RalfJung:remove-old-hacks, r=Mark-Simulacrum | Guillaume Gomez | -5/+1 |
| 2024-04-06 | Put checks that detect UB under their own flag below debug_assertions | Ben Kimock | -7/+7 |
| 2024-04-06 | Rollup merge of #122291 - lilasta:stabilize_const_location_fields, r=dtolnay | Matthias Krüger | -6/+5 |
| 2024-04-06 | Rollup merge of #114788 - tisonkun:get_mut_or_init, r=dtolnay | Matthias Krüger | -9/+84 |
| 2024-04-06 | remove miri-test-libstd hacks that are no longer needed | Ralf Jung | -5/+1 |
| 2024-04-05 | Hide async_gen_internals from standard library documentation | David Tolnay | -0/+3 |
| 2024-04-05 | Stabilize const Atomic*::into_inner | David Tolnay | -6/+48 |
| 2024-04-05 | Auto merge of #123317 - RalfJung:test-in-miri, r=m-ou-se,saethlin,onur-ozkan | bors | -0/+4 |
| 2024-04-04 | Rollup merge of #123206 - stepancheg:pointee-metadata-freeze, r=Amanieu | Jacob Pratt | -1/+2 |
| 2024-04-05 | Impl `DerefPure` for more std types | Nadrieril | -3/+15 |
| 2024-04-04 | force exhaustion in iter::ArrayChunks::into_remainder | Arthur Carcano | -1/+14 |
| 2024-04-03 | Rollup merge of #122964 - joboet:pointer_expose, r=Amanieu | Matthias Krüger | -20/+25 |
| 2024-04-03 | add 'x.py miri', and make it work for 'library/{core,alloc,std}' | Ralf Jung | -0/+4 |
| 2024-04-03 | Add docs for `FromIterator<(AE, BE)> for (A, B)` | Maybe Waffle | -0/+19 |
| 2024-04-03 | Implement `FromIterator<(AE, BE)>` for `(impl Default+Extend<AE>, impl Defaul... | Maybe Waffle | -0/+14 |
| 2024-04-03 | rename `expose_addr` to `expose_provenance` | joboet | -20/+25 |
| 2024-04-03 | Auto merge of #123390 - tgross35:f16-f128-libs-basic-impls-bootstrap, r=jhpratt | bors | -6/+21 |
| 2024-04-02 | Rollup merge of #123203 - jkarneges:context-ext, r=Amanieu | Jacob Pratt | -3/+64 |
| 2024-04-02 | Rollup merge of #122935 - RalfJung:with-exposed-provenance, r=Amanieu | Jacob Pratt | -26/+33 |
| 2024-04-02 | set tracking issue | Justin Karneges | -4/+4 |
| 2024-04-02 | Auto merge of #123385 - matthiaskrgr:rollup-v69vjbn, r=matthiaskrgr | bors | -32/+77 |
| 2024-04-02 | Put basic impls for f16 and f128 behind cfg(not(bootstrap)) | Trevor Gross | -6/+21 |
| 2024-04-02 | Rollup merge of #123226 - scottmcm:u32-shifts, r=WaffleLapkin | Matthias Krüger | -31/+64 |
| 2024-04-02 | Rollup merge of #123198 - krtab:build_hasher_default_const_new, r=Amanieu | Matthias Krüger | -1/+13 |
| 2024-04-02 | Auto merge of #118310 - scottmcm:three-way-compare, r=davidtwco | bors | -6/+36 |
| 2024-04-02 | DOC: Add FFI example for slice::from_raw_parts() | Matthias Geier | -0/+21 |
| 2024-04-02 | Auto merge of #122945 - andy-k:sorted-vec-example, r=jhpratt | bors | -3/+5 |
| 2024-04-01 | Fix error message for `env!` when env var is not valid Unicode | beetrees | -1/+2 |
| 2024-03-31 | Rollup merge of #123271 - JaniM:janim/sliceindex-doc, r=Nilstrieb | Jubilee | -0/+11 |
| 2024-03-31 | warn against implementing Freeze | Ralf Jung | -0/+7 |
| 2024-03-31 | doc: describe panic conditions for SliceIndex implementations | Jani Mustonen | -0/+11 |
| 2024-03-31 | Require Pointee::Metadata to be Freeze | Stepan Koltsov | -1/+2 |
| 2024-03-31 | Auto merge of #123181 - stepancheg:pointee-metadata-debug, r=the8472,Amanieu | bors | -1/+1 |
| 2024-03-30 | Auto merge of #123085 - tgross35:f16-f128-step4.0-libs-basic-impls, r=Amanieu | bors | -4/+10 |