diff options
| author | kennytm <kennytm@gmail.com> | 2018-12-23 00:08:00 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-12-23 02:12:22 +0800 |
| commit | e4430e034044e7917aeec195f51cb36306b42da7 (patch) | |
| tree | c4967ebfa1487afad93b0c3af27a76646639bf0f /src/libstd | |
| parent | 5e727a43cb800d330cbbc6b9935963f1c1082bfc (diff) | |
| parent | 8c40aedb8fdc9b97013f8484498a71bada06c4dc (diff) | |
| download | rust-e4430e034044e7917aeec195f51cb36306b42da7.tar.gz rust-e4430e034044e7917aeec195f51cb36306b42da7.zip | |
Rollup merge of #57040 - otavio:topic/adjust-path_from_str-feature-gate, r=Centril
Fix feature gate to point to 1.32.0 for `path_from_str` When the feature has been added back (#55148) the feature gate has not been adjusted accordingly. We have it enabled for 1.32.0, currently in Beta, so adjust it. Refs: #44431. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs index b882442dd2f..df05eb7d604 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -1461,7 +1461,7 @@ impl From<String> for PathBuf { } } -#[stable(feature = "path_from_str", since = "1.26.0")] +#[stable(feature = "path_from_str", since = "1.32.0")] impl FromStr for PathBuf { type Err = ParseError; |
