| Age | Commit message (Expand) | Author | Lines |
| 2020-06-15 | Rollup merge of #73139 - poliorcetics:cstring-from-vec-with-nul, r=dtolnay | Ralf Jung | -6/+181 |
| 2020-06-14 | Update to use the new error type and correctly compile the doc tests | Alexis Bourget | -16/+21 |
| 2020-06-14 | Add a new error type for the new method | Alexis Bourget | -0/+96 |
| 2020-06-14 | Removing the TryFrom impl | Alexis Bourget | -14/+0 |
| 2020-06-11 | Fix the link in the TryFrom impl | Alexis Bourget | -1/+1 |
| 2020-06-11 | Add a TryFrom<Vec<u8>> impl that mirror from_vec_with_nul | Alexis Bourget | -0/+14 |
| 2020-06-09 | Move to unstable, linking the issue | Alexis Bourget | -2/+2 |
| 2020-06-08 | Add methods to go from a nul-terminated Vec<u8> to a CString, checked and unc... | Alexis Bourget | -3/+77 |
| 2020-06-03 | Added a warning to CString::into_raw too | Alexis Bourget | -0/+5 |
| 2020-06-03 | Added the documentation about length to CString::from_raw | Alexis Bourget | -0/+6 |
| 2020-04-22 | impl From<Cow> for boxed slices and strings | Josh Stone | -0/+11 |
| 2020-04-06 | Implement ToOwned::clone_into for CStr | Josh Stone | -0/+17 |
| 2020-02-15 | Rollup merge of #64069 - danielhenrymantilla:feature/cstring_from_vec_of_nonz... | Dylan DPC | -0/+27 |
| 2020-02-04 | Added From<Vec<NonZeroU8>> for CString | Daniel Henry-Mantilla | -0/+27 |
| 2020-01-07 | Remove insignificant notes from CStr documentation | David Tolnay | -10/+0 |
| 2019-12-24 | Deprecate Error::description for real | David Tolnay | -0/+5 |
| 2019-12-22 | Format the world | Mark Rousskov | -31/+32 |
| 2019-12-21 | Require issue = "none" over issue = "0" in unstable attributes | Ross MacArthur | -1/+1 |
| 2019-12-18 | Propagate cfg bootstrap | Mark Rousskov | -3/+2 |
| 2019-12-13 | Require stable/unstable annotations for the constness of all stable functions... | Oliver Scherer | -1/+3 |
| 2019-10-18 | Avoid realloc in `CString::new` | Shotaro Yamada | -1/+25 |
| 2019-10-13 | Implement Error::source on IntoStringError | Linus Färnstrand | -1/+1 |
| 2019-09-14 | Rollup merge of #64203 - alexreg:rush-pr-2, r=centril | Mazdak Farrokhzad | -1/+1 |
| 2019-09-09 | Update added backticks around a function call | hman523 | -1/+1 |
| 2019-09-09 | Fixed documentation within c_str::from_ptr | hman523 | -2/+4 |
| 2019-09-06 | A few cosmetic improvements to code & comments in liballoc and libcore | Alexander Regueiro | -1/+1 |
| 2019-08-22 | Change variables names to be more consistent. | Tomasz Różański | -16/+16 |
| 2019-08-11 | Rollup merge of #61969 - MikailBag:master, r=Centril | Mark Rousskov | -0/+6 |
| 2019-08-09 | Add FIXME-s that some types should be transparent | Mikail Bagishov | -0/+6 |
| 2019-08-02 | Remove extraneous {} in use stmts in doc comments. | Bruce Mitchener | -2/+2 |
| 2019-07-13 | Fix miri error in into_inner() of CString | Antoine PLASKOWSKI | -5/+6 |
| 2019-05-01 | as_ptr returns a read-only pointer | Ralf Jung | -2/+7 |
| 2019-03-31 | libstd: deny(elided_lifetimes_in_paths) | Mazdak Farrokhzad | -7/+7 |
| 2019-03-09 | Use lifetime contravariance to elide more lifetimes in core+alloc+std | Scott McMurray | -6/+6 |
| 2019-02-28 | libstd => 2018 | Taiki Endo | -22/+22 |
| 2019-02-20 | Rollup merge of #58553 - scottmcm:more-ihle, r=Centril | kennytm | -2/+2 |
| 2019-02-17 | Use more impl header lifetime elision | Scott McMurray | -2/+2 |
| 2019-02-10 | libs: doc comments | Alexander Regueiro | -1/+1 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -3/+3 |
| 2018-12-04 | cleanup: remove static lifetimes from consts in libstd | ljedrz | -2/+2 |
| 2018-11-12 | Auto merge of #55278 - Centril:constification-1, r=alexcrichton | bors | -1/+1 |
| 2018-11-10 | Fix documentation typos. | Bruce Mitchener | -1/+1 |
| 2018-11-10 | revert making internal APIs const fn. | Mazdak Farrokhzad | -2/+2 |
| 2018-11-10 | reduce list to functions callable in const ctx. | Mazdak Farrokhzad | -2/+2 |
| 2018-11-10 | constify parts of libstd. | Mazdak Farrokhzad | -5/+5 |
| 2018-10-02 | make `CStr::from_bytes_with_nul_unchecked()` a const fn | Austin Bonander | -1/+11 |
| 2018-09-14 | Rollup merge of #53976 - GuillaumeGomez:expect-world, r=steveklabnik | kennytm | -30/+34 |
| 2018-09-08 | `&CStr`, not `CStr`, is the counterpart of `&str` | Simonas Kazlauskas | -2/+3 |
| 2018-09-05 | Replace unwrap calls in example by expect | Guillaume Gomez | -30/+34 |