File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ impl From<alloc::ffi::NulError> for Error {
83
83
}
84
84
}
85
85
86
- #[ stable( feature = "io_error_from_try_reserve" , since = "CURRENT_RUSTC_VERSION " ) ]
86
+ #[ stable( feature = "io_error_from_try_reserve" , since = "1.78.0 " ) ]
87
87
impl From < alloc:: collections:: TryReserveError > for Error {
88
88
/// Converts `TryReserveError` to an error with [`ErrorKind::OutOfMemory`].
89
89
///
Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ impl Read for Stdin {
453
453
}
454
454
}
455
455
456
- #[ stable( feature = "read_shared_stdin" , since = "CURRENT_RUSTC_VERSION " ) ]
456
+ #[ stable( feature = "read_shared_stdin" , since = "1.78.0 " ) ]
457
457
impl Read for & Stdin {
458
458
fn read ( & mut self , buf : & mut [ u8 ] ) -> io:: Result < usize > {
459
459
self . lock ( ) . read ( buf)
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ impl Barrier {
81
81
/// let barrier = Barrier::new(10);
82
82
/// ```
83
83
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
84
- #[ rustc_const_stable( feature = "const_barrier" , since = "CURRENT_RUSTC_VERSION " ) ]
84
+ #[ rustc_const_stable( feature = "const_barrier" , since = "1.78.0 " ) ]
85
85
#[ must_use]
86
86
#[ inline]
87
87
pub const fn new ( n : usize ) -> Barrier {
You can’t perform that action at this time.
0 commit comments