Skip to content

Commit dc4ba57

Browse files
committed
Stabilize a portion of 'once_cell'
Move items not part of this stabilization to 'lazy_cell' or 'once_cell_try'
1 parent f98598c commit dc4ba57

File tree

40 files changed

+87
-128
lines changed

40 files changed

+87
-128
lines changed

compiler/rustc_borrowck/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#![feature(let_chains)]
66
#![feature(min_specialization)]
77
#![feature(never_type)]
8-
#![feature(once_cell)]
8+
#![feature(lazy_cell)]
99
#![feature(rustc_attrs)]
1010
#![feature(stmt_expr_attributes)]
1111
#![feature(trusted_step)]

compiler/rustc_codegen_llvm/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#![feature(iter_intersperse)]
1111
#![feature(let_chains)]
1212
#![feature(never_type)]
13-
#![feature(once_cell)]
1413
#![recursion_limit = "256"]
1514
#![allow(rustc::potential_query_instability)]
1615
#![deny(rustc::untranslatable_diagnostic)]

compiler/rustc_codegen_ssa/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#![feature(int_roundings)]
66
#![feature(let_chains)]
77
#![feature(never_type)]
8-
#![feature(once_cell)]
98
#![feature(strict_provenance)]
109
#![feature(try_blocks)]
1110
#![recursion_limit = "256"]

compiler/rustc_data_structures/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#![feature(never_type)]
2121
#![feature(type_alias_impl_trait)]
2222
#![feature(new_uninit)]
23-
#![feature(once_cell)]
23+
#![feature(lazy_cell)]
2424
#![feature(rustc_attrs)]
2525
#![feature(negative_impls)]
2626
#![feature(test)]

compiler/rustc_driver_impl/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
88
#![feature(is_terminal)]
9-
#![feature(once_cell)]
9+
#![feature(lazy_cell)]
1010
#![feature(decl_macro)]
1111
#![recursion_limit = "256"]
1212
#![allow(rustc::potential_query_instability)]

compiler/rustc_error_messages/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![feature(let_chains)]
2-
#![feature(once_cell)]
2+
#![feature(lazy_cell)]
33
#![feature(rustc_attrs)]
44
#![feature(type_alias_impl_trait)]
55
#![deny(rustc::untranslatable_diagnostic)]

compiler/rustc_feature/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! even if it is stabilized or removed, *do not remove it*. Instead, move the
1212
//! symbol to the `accepted` or `removed` modules respectively.
1313
14-
#![feature(once_cell)]
14+
#![feature(lazy_cell)]
1515
#![deny(rustc::untranslatable_diagnostic)]
1616
#![deny(rustc::diagnostic_outside_of_impl)]
1717

compiler/rustc_hir_analysis/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ This API is completely unstable and subject to change.
6767
#![feature(let_chains)]
6868
#![feature(min_specialization)]
6969
#![feature(never_type)]
70-
#![feature(once_cell)]
70+
#![feature(lazy_cell)]
7171
#![feature(slice_partition_dedup)]
7272
#![feature(try_blocks)]
7373
#![feature(is_some_and)]

compiler/rustc_interface/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![feature(decl_macro)]
33
#![feature(internal_output_capture)]
44
#![feature(thread_spawn_unchecked)]
5-
#![feature(once_cell)]
5+
#![feature(lazy_cell)]
66
#![feature(try_blocks)]
77
#![recursion_limit = "256"]
88
#![allow(rustc::potential_query_instability)]

compiler/rustc_metadata/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
#![feature(generators)]
55
#![feature(iter_from_generator)]
66
#![feature(let_chains)]
7-
#![feature(once_cell)]
87
#![feature(proc_macro_internals)]
98
#![feature(macro_metavar_expr)]
109
#![feature(min_specialization)]

compiler/rustc_middle/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
#![feature(never_type)]
4040
#![feature(extern_types)]
4141
#![feature(new_uninit)]
42-
#![feature(once_cell)]
4342
#![feature(let_chains)]
4443
#![feature(min_specialization)]
4544
#![feature(trusted_len)]

compiler/rustc_mir_build/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
#![feature(if_let_guard)]
99
#![feature(let_chains)]
1010
#![feature(min_specialization)]
11-
#![feature(once_cell)]
1211
#![feature(try_blocks)]
1312
#![recursion_limit = "256"]
1413

compiler/rustc_mir_dataflow/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![feature(exact_size_is_empty)]
44
#![feature(let_chains)]
55
#![feature(min_specialization)]
6-
#![feature(once_cell)]
76
#![feature(stmt_expr_attributes)]
87
#![feature(trusted_step)]
98
#![recursion_limit = "256"]

compiler/rustc_mir_transform/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#![feature(map_try_insert)]
66
#![feature(min_specialization)]
77
#![feature(never_type)]
8-
#![feature(once_cell)]
98
#![feature(option_get_or_insert_default)]
109
#![feature(trusted_step)]
1110
#![feature(try_blocks)]

compiler/rustc_query_impl/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
#![feature(const_mut_refs)]
66
#![feature(min_specialization)]
77
#![feature(never_type)]
8-
#![feature(once_cell)]
98
#![feature(rustc_attrs)]
109
#![recursion_limit = "256"]
1110
#![allow(rustc::potential_query_instability)]

compiler/rustc_session/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#![feature(let_chains)]
33
#![feature(min_specialization)]
44
#![feature(never_type)]
5-
#![feature(once_cell)]
5+
#![feature(lazy_cell)]
66
#![feature(option_get_or_insert_default)]
77
#![feature(rustc_attrs)]
88
#![feature(map_many_mut)]

library/alloc/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
#![feature(slice_flatten)]
4444
#![feature(thin_box)]
4545
#![feature(strict_provenance)]
46-
#![feature(once_cell)]
4746
#![feature(drain_keep_rest)]
4847
#![deny(fuzzy_provenance_casts)]
4948
#![deny(unsafe_op_in_unsafe_fn)]

library/core/src/cell.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,9 @@ use crate::ptr::{self, NonNull};
202202
mod lazy;
203203
mod once;
204204

205-
#[unstable(feature = "once_cell", issue = "74465")]
205+
#[unstable(feature = "lazy_cell", issue = "109736")]
206206
pub use lazy::LazyCell;
207-
#[unstable(feature = "once_cell", issue = "74465")]
207+
#[stable(feature = "once_cell", since = "CURRENT_RUSTC_VERSION")]
208208
pub use once::OnceCell;
209209

210210
/// A mutable memory location.

library/core/src/cell/lazy.rs

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::ops::Deref;
1111
/// # Examples
1212
///
1313
/// ```
14-
/// #![feature(once_cell)]
14+
/// #![feature(lazy_cell)]
1515
///
1616
/// use std::cell::LazyCell;
1717
///
@@ -29,7 +29,7 @@ use crate::ops::Deref;
2929
/// // 92
3030
/// // 92
3131
/// ```
32-
#[unstable(feature = "once_cell", issue = "74465")]
32+
#[unstable(feature = "lazy_cell", issue = "109736")]
3333
pub struct LazyCell<T, F = fn() -> T> {
3434
cell: OnceCell<T>,
3535
init: Cell<Option<F>>,
@@ -41,7 +41,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
4141
/// # Examples
4242
///
4343
/// ```
44-
/// #![feature(once_cell)]
44+
/// #![feature(lazy_cell)]
4545
///
4646
/// use std::cell::LazyCell;
4747
///
@@ -52,7 +52,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
5252
/// assert_eq!(&*lazy, "HELLO, WORLD!");
5353
/// ```
5454
#[inline]
55-
#[unstable(feature = "once_cell", issue = "74465")]
55+
#[unstable(feature = "lazy_cell", issue = "109736")]
5656
pub const fn new(init: F) -> LazyCell<T, F> {
5757
LazyCell { cell: OnceCell::new(), init: Cell::new(Some(init)) }
5858
}
@@ -65,7 +65,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
6565
/// # Examples
6666
///
6767
/// ```
68-
/// #![feature(once_cell)]
68+
/// #![feature(lazy_cell)]
6969
///
7070
/// use std::cell::LazyCell;
7171
///
@@ -75,7 +75,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
7575
/// assert_eq!(&*lazy, &92);
7676
/// ```
7777
#[inline]
78-
#[unstable(feature = "once_cell", issue = "74465")]
78+
#[unstable(feature = "lazy_cell", issue = "109736")]
7979
pub fn force(this: &LazyCell<T, F>) -> &T {
8080
this.cell.get_or_init(|| match this.init.take() {
8181
Some(f) => f(),
@@ -84,7 +84,7 @@ impl<T, F: FnOnce() -> T> LazyCell<T, F> {
8484
}
8585
}
8686

87-
#[unstable(feature = "once_cell", issue = "74465")]
87+
#[unstable(feature = "lazy_cell", issue = "109736")]
8888
impl<T, F: FnOnce() -> T> Deref for LazyCell<T, F> {
8989
type Target = T;
9090
#[inline]
@@ -93,7 +93,7 @@ impl<T, F: FnOnce() -> T> Deref for LazyCell<T, F> {
9393
}
9494
}
9595

96-
#[unstable(feature = "once_cell", issue = "74465")]
96+
#[unstable(feature = "lazy_cell", issue = "109736")]
9797
impl<T: Default> Default for LazyCell<T> {
9898
/// Creates a new lazy value using `Default` as the initializing function.
9999
#[inline]
@@ -102,7 +102,7 @@ impl<T: Default> Default for LazyCell<T> {
102102
}
103103
}
104104

105-
#[unstable(feature = "once_cell", issue = "74465")]
105+
#[unstable(feature = "lazy_cell", issue = "109736")]
106106
impl<T: fmt::Debug, F> fmt::Debug for LazyCell<T, F> {
107107
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
108108
f.debug_struct("Lazy").field("cell", &self.cell).field("init", &"..").finish()

0 commit comments

Comments
 (0)