diff options
| author | Boxy <rust@boxyuwu.dev> | 2024-11-25 11:46:46 +0000 |
|---|---|---|
| committer | Boxy <rust@boxyuwu.dev> | 2024-11-25 11:46:46 +0000 |
| commit | 70fbc71189dc0078de7257816f1bfbc529dc1014 (patch) | |
| tree | f90ddf11f9bd8e5a54b9d74dbaeb4f0087de5dee /library/std/src | |
| parent | f1e07524047cbc46501a429134e80505a7cd73c0 (diff) | |
| download | rust-70fbc71189dc0078de7257816f1bfbc529dc1014.tar.gz rust-70fbc71189dc0078de7257816f1bfbc529dc1014.zip | |
replace placeholder version
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/ffi/os_str.rs | 6 | ||||
| -rw-r--r-- | library/std/src/os/darwin/mod.rs | 2 | ||||
| -rw-r--r-- | library/std/src/path.rs | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/library/std/src/ffi/os_str.rs b/library/std/src/ffi/os_str.rs index 79dfb47d0c4..7a3f6eed1a9 100644 --- a/library/std/src/ffi/os_str.rs +++ b/library/std/src/ffi/os_str.rs @@ -1225,7 +1225,7 @@ impl From<&OsStr> for Box<OsStr> { } } -#[stable(feature = "box_from_mut_slice", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "box_from_mut_slice", since = "1.84.0")] impl From<&mut OsStr> for Box<OsStr> { /// Copies the string into a newly allocated <code>[Box]<[OsStr]></code>. #[inline] @@ -1305,7 +1305,7 @@ impl From<&OsStr> for Arc<OsStr> { } } -#[stable(feature = "shared_from_mut_slice", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "shared_from_mut_slice", since = "1.84.0")] impl From<&mut OsStr> for Arc<OsStr> { /// Copies the string into a newly allocated <code>[Arc]<[OsStr]></code>. #[inline] @@ -1335,7 +1335,7 @@ impl From<&OsStr> for Rc<OsStr> { } } -#[stable(feature = "shared_from_mut_slice", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "shared_from_mut_slice", since = "1.84.0")] impl From<&mut OsStr> for Rc<OsStr> { /// Copies the string into a newly allocated <code>[Rc]<[OsStr]></code>. #[inline] diff --git a/library/std/src/os/darwin/mod.rs b/library/std/src/os/darwin/mod.rs index 7a057ddb861..3b1bd974fa3 100644 --- a/library/std/src/os/darwin/mod.rs +++ b/library/std/src/os/darwin/mod.rs @@ -13,7 +13,7 @@ //! `aarch64-apple-darwin` target names, which are mostly named that way for //! legacy reasons. -#![stable(feature = "os_darwin", since = "CURRENT_RUSTC_VERSION")] +#![stable(feature = "os_darwin", since = "1.84.0")] #![doc(cfg(target_vendor = "apple"))] pub mod fs; diff --git a/library/std/src/path.rs b/library/std/src/path.rs index b0291e3aa19..f07aa8a21b9 100644 --- a/library/std/src/path.rs +++ b/library/std/src/path.rs @@ -1762,7 +1762,7 @@ impl From<&Path> for Box<Path> { } } -#[stable(feature = "box_from_mut_slice", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "box_from_mut_slice", since = "1.84.0")] impl From<&mut Path> for Box<Path> { /// Creates a boxed [`Path`] from a reference. /// @@ -2000,7 +2000,7 @@ impl From<&Path> for Arc<Path> { } } -#[stable(feature = "shared_from_mut_slice", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "shared_from_mut_slice", since = "1.84.0")] impl From<&mut Path> for Arc<Path> { /// Converts a [`Path`] into an [`Arc`] by copying the [`Path`] data into a new [`Arc`] buffer. #[inline] @@ -2030,7 +2030,7 @@ impl From<&Path> for Rc<Path> { } } -#[stable(feature = "shared_from_mut_slice", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "shared_from_mut_slice", since = "1.84.0")] impl From<&mut Path> for Rc<Path> { /// Converts a [`Path`] into an [`Rc`] by copying the [`Path`] data into a new [`Rc`] buffer. #[inline] |
