@@ -80,20 +80,37 @@ items = []
8080
8181[[group]]
8282name = "unconst_rules"
83- label = "Need to come up\nwith a scheme\nfor const unsafe/unconst"
84- items = [
85- { label = "feature:const_fn_transmute", href = "https://github.com/rust-lang/rust/issues/53605" },
86- { label = "feature:const_fn_union", href = "https://github.com/rust-lang/rust/issues/51909", port = "union" },
87- { label = "feature:const_raw_ptr_deref", href = "https://github.com/rust-lang/rust/issues/51911", port = "raw_ptr_deref" },
88- ]
89- href = "https://github.com/rust-lang/const-eval/issues/14"
83+ label = "UB in CTFE"
84+ href = "https://github.com/rust-lang/rfcs/pull/3016"
85+ items = []
86+
87+ [[group]]
88+ name = "transmute"
89+ label = "feature:const_fn_transmute"
90+ items = []
91+ requires = ["unconst_rules"]
92+ href = "https://github.com/rust-lang/rust/issues/53605"
93+
94+ [[group]]
95+ name = "union"
96+ label = "feature:const_fn_union"
97+ items = []
98+ requires = ["unconst_rules"]
99+ href = "https://github.com/rust-lang/rust/issues/51909"
100+
101+ [[group]]
102+ name = "raw_ptr_deref"
103+ label = "feature:const_raw_ptr_deref"
104+ items = []
105+ requires = ["unconst_rules"]
106+ href = "https://github.com/rust-lang/rust/issues/51911"
90107
91108[[group]]
92109name = "offset_of"
93110label = "offset_of"
94111items = []
95112requires = [
96- "unconst_rules: raw_ptr_deref",
113+ "raw_ptr_deref",
97114 "raw_ref_macros",
98115 "maybe_uninit_as_ptr",
99116 "offset_from",
@@ -273,7 +290,7 @@ requires = ["vec"]
273290label = "Vec operations"
274291name = "vec"
275292items = []
276- requires = ["mut_ref", "heap", "trait_impl", "drop", "unconst_rules: raw_ptr_deref"]
293+ requires = ["mut_ref", "heap", "trait_impl", "drop", "raw_ptr_deref"]
277294
278295[[group]]
279296label = "Drop"
@@ -285,7 +302,7 @@ requires = ["mut_ref", "trait_impl"]
285302label = "ptr::copy_nonoverlapping"
286303name = "copy_nonoverlapping"
287304items = []
288- requires = ["unconst_rules: raw_ptr_deref", "mut_ref"]
305+ requires = ["raw_ptr_deref", "mut_ref"]
289306
290307[[group]]
291308label = "async functions\nand blocks"
0 commit comments