| Age | Commit message (Expand) | Author | Lines |
| 2022-08-10 | Guarantee `try_reserve` preserves the contents on error | YOSHIOKA Takuma | -1/+2 |
| 2022-07-17 | Rollup merge of #97915 - tbu-:pr_os_string_fmt_write, r=joshtriplett | Yuki Okushi | -0/+8 |
| 2022-07-16 | Update `since` version to 1.64 | Josh Triplett | -1/+1 |
| 2022-07-15 | Stabilize `core::ffi::CStr`, `alloc::ffi::CString`, and friends | Josh Triplett | -18/+4 |
| 2022-07-14 | Rollup merge of #98315 - joshtriplett:stabilize-core-ffi-c, r=Mark-Simulacrum | Dylan DPC | -0/+6 |
| 2022-07-13 | Stabilize `core::ffi:c_*` and rexport in `std::ffi` | Josh Triplett | -0/+6 |
| 2022-06-19 | Fix documentation for with_capacity and reserve families of methods | jmaargh | -10/+12 |
| 2022-06-17 | Rollup merge of #95392 - Xuanwo:stablize_try_reserve_2, r=dtolnay | Dylan DPC | -4/+2 |
| 2022-06-16 | std: Stabilize feature try_reserve_2 | Xuanwo | -4/+2 |
| 2022-06-16 | Rollup merge of #97202 - joshtriplett:os-str-capacity-documentation, r=dtolnay | Yuki Okushi | -2/+32 |
| 2022-06-09 | Implement `fmt::Write` for `OsString` | Tobias Bucher | -0/+8 |
| 2022-05-31 | Auto merge of #96881 - est31:join_osstr, r=dtolnay | bors | -0/+31 |
| 2022-05-27 | docs: Don't imply that OsStr on Unix is always UTF-8 | Xiretza | -1/+1 |
| 2022-05-21 | Expand the explanation of OsString capacity | Josh Triplett | -3/+14 |
| 2022-05-19 | OsString: Consolidate all documentation about capacity in top-level docs | Josh Triplett | -28/+12 |
| 2022-05-18 | std: Add capacity guarantees notes for OsString | Xuanwo | -0/+35 |
| 2022-05-11 | Rollup merge of #96861 - m-ou-se:std-use-prelude-2021, r=joshtriplett | Yuki Okushi | -1/+1 |
| 2022-05-09 | Implement [OsStr]::join | est31 | -0/+31 |
| 2022-05-09 | Use Rust 2021 prelude in std itself. | Mara Bos | -1/+1 |
| 2022-05-08 | Revert "Implement [OsStr]::join", which was merged without FCP | Thom Chiovoloni | -31/+0 |
| 2022-05-05 | Implement [OsStr]::join | est31 | -0/+31 |
| 2022-04-27 | Revert "Re-export core::ffi types from std::ffi" | Josh Triplett | -9/+0 |
| 2022-04-14 | library: Use type aliases to make `CStr(ing)` in libcore/liballoc unstable | Vadim Petrochenkov | -4/+14 |
| 2022-04-14 | library: Move `CStr` to libcore, and `CString` to liballoc | Vadim Petrochenkov | -1925/+6 |
| 2022-03-18 | add CStr::from_bytes_until_nul | Eric Seppanen | -0/+106 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -3/+3 |
| 2022-03-02 | Re-export core::ffi types from std::ffi | bstrie | -0/+9 |
| 2022-02-19 | Rollup merge of #93979 - SUPERCILEX:debug_check, r=dtolnay | Matthias Krüger | -20/+29 |
| 2022-02-17 | Rollup merge of #89869 - kpreid:from-doc, r=yaahc | Matthias Krüger | -0/+23 |
| 2022-02-16 | Add debug asserts to validate NUL terminator in c strings | Alex Saveau | -20/+29 |
| 2022-02-07 | Auto merge of #87869 - thomcc:skinny-io-error, r=yaahc | bors | -1/+1 |
| 2022-02-06 | rewrite from_bytes_with_nul to match code style in from_vec_with_nul | Inteon | -7/+8 |
| 2022-02-04 | Hide Repr details from io::Error, and rework `io::Error::new_const`. | Thom Chiovoloni | -1/+1 |
| 2022-01-20 | Correct docs in `Arc` and `Rc`. | Jakob Degen | -4/+8 |
| 2022-01-19 | Rollup merge of #92124 - AngelicosPhosphoros:remove_extra_alloc_in_cstring_ne... | Matthias Krüger | -22/+45 |
| 2021-12-30 | Remove needless allocation from example code of OsString | David Tolnay | -4/+4 |
| 2021-12-30 | Fix some copy/paste hysteresis in OsString try_reserve docs | David Tolnay | -4/+4 |
| 2021-12-29 | Address comments | Xuanwo | -6/+6 |
| 2021-12-29 | Update library/std/src/ffi/os_str.rs | Xuanwo | -1/+1 |
| 2021-12-28 | Add try_reserve for OsString | Xuanwo | -0/+81 |
| 2021-12-27 | Little improves in CString `new` when creating from slice | AngelicosPhosphoros | -22/+45 |
| 2021-12-13 | Stabilize const_cstr_unchecked | Konrad Borowski | -1/+1 |
| 2021-12-04 | Add documentation to more `From::from` implementations. | Kevin Reid | -0/+23 |
| 2021-12-02 | Emphasise that an OsStr[ing] is not necessarily a platform string | Chris Denton | -10/+13 |
| 2021-10-31 | Rollup merge of #90430 - jkugelman:must-use-std-a-through-n, r=joshtriplett | Matthias Krüger | -0/+5 |
| 2021-10-31 | Rollup merge of #89786 - jkugelman:must-use-len-and-is_empty, r=joshtriplett | Matthias Krüger | -0/+2 |
| 2021-10-31 | Rollup merge of #89835 - jkugelman:must-use-expensive-computations, r=joshtri... | Matthias Krüger | -0/+1 |
| 2021-10-30 | Add #[must_use] to remaining std functions (A-N) | John Kugelman | -0/+5 |
| 2021-10-30 | Add #[must_use] to len and is_empty | John Kugelman | -0/+2 |
| 2021-10-27 | Add tracking issue number to const_cstr_unchecked | Konrad Borowski | -1/+1 |