Skip to content

Commit f2bd8e1

Browse files
committed
feat(utils): add ConstAllocator
1 parent 965dfa4 commit f2bd8e1

File tree

6 files changed

+442
-3
lines changed

6 files changed

+442
-3
lines changed

src/r3_core/src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,17 @@
1111
#![feature(const_raw_ptr_comparison)]
1212
#![feature(const_ptr_offset_from)]
1313
#![feature(maybe_uninit_slice)]
14+
#![feature(const_eval_select)]
1415
#![feature(const_mut_refs)]
1516
#![feature(const_slice_from_raw_parts)]
1617
#![feature(const_option)]
1718
#![feature(const_option_ext)]
1819
#![feature(const_trait_impl)]
1920
#![feature(const_refs_to_cell)]
2021
#![feature(const_ptr_as_ref)]
22+
#![feature(const_ptr_write)]
23+
#![feature(core_intrinsics)]
24+
#![feature(const_heap)]
2125
#![feature(exhaustive_patterns)] // `let Ok(()) = Ok::<(), !>(())`
2226
#![feature(decl_macro)]
2327
#![feature(set_ptr_value)] // `<*const T>::set_ptr_value`

0 commit comments

Comments
 (0)