| Age | Commit message (Expand) | Author | Lines |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -1/+1 |
| 2022-02-17 | Rollup merge of #93976 - SUPERCILEX:separator_str, r=yaahc | Matthias Krüger | -0/+6 |
| 2022-02-17 | Rollup merge of #89869 - kpreid:from-doc, r=yaahc | Matthias Krüger | -3/+3 |
| 2022-02-16 | Add MAIN_SEPARATOR_STR | Alex Saveau | -0/+6 |
| 2022-02-13 | Auto merge of #91673 - ChrisDenton:path-absolute, r=Mark-Simulacrum | bors | -1/+77 |
| 2022-02-12 | Auto merge of #93697 - the8472:fix-windows-path-hash, r=Mark-Simulacrum | bors | -9/+17 |
| 2022-02-08 | Fix `absolute` issues | Chris Denton | -2/+2 |
| 2022-02-08 | `std::path::absolute` | Chris Denton | -1/+77 |
| 2022-02-06 | Fix hashing for windows paths containing a CurDir component | The 8472 | -9/+17 |
| 2022-02-01 | Link `try_exists` docs to `Path::exists` | Chris Denton | -1/+3 |
| 2022-01-24 | Rollup merge of #92513 - Xuanwo:path-buf, r=dtolnay | Matthias Krüger | -0/+19 |
| 2022-01-20 | Correct docs in `Arc` and `Rc`. | Jakob Degen | -3/+5 |
| 2022-01-14 | Typos fix | Maxwase | -1/+1 |
| 2022-01-03 | std: Implement try_reserve and try_reserve_exact on PathBuf | Xuanwo | -0/+19 |
| 2021-12-11 | Correct since attribute for feature | Maxwase | -1/+1 |
| 2021-12-04 | Add documentation to more `From::from` implementations. | Kevin Reid | -3/+3 |
| 2021-12-02 | Document file path case sensitivity | Chris Denton | -0/+7 |
| 2021-11-11 | `Prefix` can be case-insensitive, delegate to its Hash impl instead of trying... | The8472 | -0/+8 |
| 2021-11-09 | remove redundant .iter() call since zip() takes an IntoIterator argument | The8472 | -6/+5 |
| 2021-11-09 | add fast path on Path::eq for exact equality | The8472 | -1/+20 |
| 2021-11-09 | optimize Hash for Path | The8472 | -2/+28 |
| 2021-10-31 | Rollup merge of #90431 - jkugelman:must-use-std-o-through-z, r=joshtriplett | Matthias Krüger | -0/+15 |
| 2021-10-31 | Rollup merge of #89677 - maxwase:is-symlink-stabilization, r=joshtriplett | Matthias Krüger | -3/+8 |
| 2021-10-30 | Add #[must_use] to remaining std functions (O-Z) | John Kugelman | -0/+15 |
| 2021-10-14 | Ensure that pushing empty path works as before | Sean Young | -1/+4 |
| 2021-10-13 | Rollup merge of #89794 - jkugelman:must-use-to_value-conversions, r=joshtriplett | Yuki Okushi | -0/+6 |
| 2021-10-13 | Merge branch 'master' into is-symlink-stabilization | Max Wase | -0/+20 |
| 2021-10-12 | Rollup merge of #89797 - jkugelman:must-use-is_condition-tests, r=joshtriplett | the8472 | -0/+8 |
| 2021-10-12 | Rollup merge of #89796 - jkugelman:must-use-non-mutating-verb-methods, r=josh... | the8472 | -0/+2 |
| 2021-10-12 | Rollup merge of #89778 - jkugelman:must-use-as_type-conversions, r=joshtriplett | the8472 | -0/+5 |
| 2021-10-12 | Update library/std/src/path.rs | Max Wase | -0/+6 |
| 2021-10-11 | Add #[must_use] to non-mutating verb methods | John Kugelman | -0/+2 |
| 2021-10-11 | Add #[must_use] to is_condition tests | John Kugelman | -0/+8 |
| 2021-10-11 | Add #[must_use] to to_value conversions | John Kugelman | -0/+6 |
| 2021-10-11 | Add #[must_use] to as_type conversions | John Kugelman | -0/+5 |
| 2021-10-11 | Rollup merge of #89729 - jkugelman:must-use-core-std-constructors, r=joshtrip... | Guillaume Gomez | -0/+2 |
| 2021-10-10 | Add #[must_use] to conversions that move self | John Kugelman | -0/+3 |
| 2021-10-10 | Add #[must_use] to core and std constructors | John Kugelman | -0/+2 |
| 2021-10-08 | Stabilize `is_symlink()` for `Metadata` and `Path` | Maxwase | -3/+2 |
| 2021-10-01 | path.push() should work as expected on windows verbatim paths | Sean Young | -7/+46 |
| 2021-09-25 | Apply 16 commits (squashed) | Frank Steffahn | -1/+1 |
| 2021-08-22 | Auto merge of #85166 - mbhall88:file-prefix, r=dtolnay | bors | -3/+62 |
| 2021-08-20 | Auto merge of #86898 - the8472:path-cmp, r=dtolnay | bors | -7/+40 |
| 2021-08-17 | remove unnecessary empty check | Michael Hall | -3/+1 |
| 2021-08-08 | Bump shrink_to stabilization to Rust 1.56 | David Tolnay | -1/+1 |
| 2021-07-06 | optimize {Path,PathBuf,Components}::{cmp,partial_cmp} for shared prefixes | The8472 | -6/+39 |
| 2021-07-06 | Stabilize Vec<T>::shrink_to | Yoh Deadfall | -1/+1 |
| 2021-07-06 | use Eq::eq instead of Iterator::eq implementation | The8472 | -1/+1 |
| 2021-06-24 | make docs clearer about how hidden files are dealt with | Michael Hall | -5/+19 |
| 2021-06-24 | change return signature for split_file_at_dot | Michael Hall | -6/+8 |