[no description]
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,9 +1,12 @@ //! provides bigints, but const. #![feature( + min_adt_const_params, const_drop_in_place, generic_const_exprs, const_eval_select, const_manually_drop_take, + unsized_const_params, + adt_const_params, exact_div, exact_bitshifts, const_default, @@ -17,7 +20,8 @@ const_convert, const_result_trait_fn, derive_const, - const_clone + const_clone, + rustc_attrs )] #![allow(warnings)] |