2020-03-07 02:40:54 +01:00
|
|
|
#![feature(alloc_layout_extra)]
|
2020-05-18 21:24:37 +02:00
|
|
|
#![feature(array_chunks)]
|
2020-08-30 21:07:23 +02:00
|
|
|
#![feature(array_methods)]
|
2020-08-13 19:09:14 +00:00
|
|
|
#![feature(array_windows)]
|
2022-02-10 00:24:12 -05:00
|
|
|
#![feature(bigint_helper_methods)]
|
2018-04-06 22:45:31 +02:00
|
|
|
#![feature(cell_update)]
|
2022-10-07 20:59:23 +02:00
|
|
|
#![feature(const_align_offset)]
|
2020-09-24 14:41:40 +00:00
|
|
|
#![feature(const_assume)]
|
2022-10-29 15:38:00 +02:00
|
|
|
#![feature(const_align_of_val_raw)]
|
2021-12-23 20:07:41 +09:00
|
|
|
#![feature(const_black_box)]
|
2021-12-15 00:11:23 +08:00
|
|
|
#![feature(const_bool_to_option)]
|
2022-09-27 19:09:32 +00:00
|
|
|
#![feature(const_caller_location)]
|
2020-11-04 11:41:57 +01:00
|
|
|
#![feature(const_cell_into_inner)]
|
2021-10-18 19:19:28 +09:00
|
|
|
#![feature(const_convert)]
|
2022-11-08 17:39:40 +01:00
|
|
|
#![feature(const_hash)]
|
2022-01-26 13:06:09 +09:00
|
|
|
#![feature(const_heap)]
|
2021-11-16 19:58:52 -05:00
|
|
|
#![feature(const_maybe_uninit_as_mut_ptr)]
|
2022-01-11 15:46:53 +01:00
|
|
|
#![feature(const_maybe_uninit_assume_init_read)]
|
2022-01-28 18:41:35 +09:00
|
|
|
#![feature(const_nonnull_new)]
|
2021-12-05 18:46:29 +08:00
|
|
|
#![feature(const_num_from_num)]
|
2022-08-01 21:50:21 +04:00
|
|
|
#![feature(const_pointer_byte_offsets)]
|
2022-10-07 21:46:28 +02:00
|
|
|
#![feature(const_pointer_is_aligned)]
|
2022-01-28 18:41:35 +09:00
|
|
|
#![feature(const_ptr_as_ref)]
|
2020-12-26 01:59:08 +01:00
|
|
|
#![feature(const_ptr_read)]
|
2021-01-18 22:59:56 +01:00
|
|
|
#![feature(const_ptr_write)]
|
2021-03-13 18:40:47 +01:00
|
|
|
#![feature(const_trait_impl)]
|
2021-12-23 20:07:41 +09:00
|
|
|
#![feature(const_likely)]
|
2022-10-11 06:40:37 +00:00
|
|
|
#![feature(const_location_fields)]
|
2020-09-24 14:41:40 +00:00
|
|
|
#![feature(core_intrinsics)]
|
2015-09-20 18:34:33 +02:00
|
|
|
#![feature(core_private_bignum)]
|
|
|
|
#![feature(core_private_diy_float)]
|
2015-08-29 18:30:05 +02:00
|
|
|
#![feature(dec2flt)]
|
2020-09-04 20:17:06 +02:00
|
|
|
#![feature(div_duration)]
|
2021-10-04 23:09:23 -04:00
|
|
|
#![feature(duration_consts_float)]
|
2020-08-30 18:31:34 +01:00
|
|
|
#![feature(duration_constants)]
|
2017-07-06 17:13:29 +02:00
|
|
|
#![feature(exact_size_is_empty)]
|
2020-10-19 15:38:11 +02:00
|
|
|
#![feature(extern_types)]
|
2015-06-10 13:33:52 -07:00
|
|
|
#![feature(flt2dec)]
|
2017-03-17 15:05:44 +01:00
|
|
|
#![feature(fmt_internals)]
|
2021-11-18 11:48:52 +01:00
|
|
|
#![feature(float_minimum_maximum)]
|
2021-12-07 21:10:39 -05:00
|
|
|
#![feature(future_join)]
|
2022-05-22 07:18:32 -03:00
|
|
|
#![feature(generic_assert_internals)]
|
2022-05-20 11:04:13 -03:00
|
|
|
#![feature(array_try_from_fn)]
|
2022-03-04 00:17:26 -08:00
|
|
|
#![feature(hasher_prefixfree_extras)]
|
2018-03-17 11:07:50 +01:00
|
|
|
#![feature(hashmap_internals)]
|
2019-08-06 14:13:13 +03:00
|
|
|
#![feature(try_find)]
|
2021-12-23 20:07:41 +09:00
|
|
|
#![feature(inline_const)]
|
2018-10-11 09:53:15 -07:00
|
|
|
#![feature(is_sorted)]
|
2022-10-29 15:38:00 +02:00
|
|
|
#![feature(layout_for_ptr)]
|
2017-12-17 14:44:03 -08:00
|
|
|
#![feature(pattern)]
|
2022-01-24 01:41:37 +01:00
|
|
|
#![feature(pin_macro)]
|
2017-03-21 02:38:03 +01:00
|
|
|
#![feature(sort_internals)]
|
2021-10-09 11:28:20 -04:00
|
|
|
#![feature(slice_take)]
|
2021-10-11 17:41:25 -04:00
|
|
|
#![feature(slice_from_ptr_range)]
|
2021-12-26 08:45:33 +00:00
|
|
|
#![feature(split_as_slice)]
|
2021-01-01 22:12:49 +01:00
|
|
|
#![feature(maybe_uninit_uninit_array)]
|
2020-11-30 22:24:04 -08:00
|
|
|
#![feature(maybe_uninit_write_slice)]
|
2022-10-16 21:01:28 -07:00
|
|
|
#![feature(maybe_uninit_uninit_array_transpose)]
|
2020-06-16 13:07:15 +02:00
|
|
|
#![feature(min_specialization)]
|
2021-06-06 02:08:09 +01:00
|
|
|
#![feature(numfmt)]
|
2017-04-23 21:47:09 -07:00
|
|
|
#![feature(step_trait)]
|
2018-04-05 15:55:28 +02:00
|
|
|
#![feature(str_internals)]
|
2022-04-04 15:53:53 +01:00
|
|
|
#![feature(std_internals)]
|
2015-06-10 13:33:52 -07:00
|
|
|
#![feature(test)]
|
2017-05-23 02:24:25 -07:00
|
|
|
#![feature(trusted_len)]
|
2021-12-09 22:19:57 +01:00
|
|
|
#![feature(try_blocks)]
|
2021-04-15 01:13:39 -07:00
|
|
|
#![feature(try_trait_v2)]
|
2018-05-06 01:02:05 +08:00
|
|
|
#![feature(slice_internals)]
|
2018-09-08 15:33:02 +02:00
|
|
|
#![feature(slice_partition_dedup)]
|
2020-09-19 10:26:46 +02:00
|
|
|
#![feature(iter_advance_by)]
|
2022-01-02 18:31:56 +02:00
|
|
|
#![feature(iter_array_chunks)]
|
2022-02-20 01:46:55 +01:00
|
|
|
#![feature(iter_collect_into)]
|
2019-07-09 12:39:19 -07:00
|
|
|
#![feature(iter_partition_in_place)]
|
2021-10-07 10:39:36 -07:00
|
|
|
#![feature(iter_intersperse)]
|
2019-07-09 12:39:19 -07:00
|
|
|
#![feature(iter_is_partitioned)]
|
2022-06-21 08:57:02 +02:00
|
|
|
#![feature(iter_next_chunk)]
|
2019-06-28 14:43:32 +02:00
|
|
|
#![feature(iter_order_by)]
|
2022-11-15 00:04:55 -08:00
|
|
|
#![feature(iter_repeat_n)]
|
2022-02-15 18:58:42 -08:00
|
|
|
#![feature(iterator_try_collect)]
|
2021-07-11 15:43:30 +10:00
|
|
|
#![feature(iterator_try_reduce)]
|
2020-09-18 19:23:50 +02:00
|
|
|
#![feature(const_mut_refs)]
|
2020-09-13 01:55:34 +02:00
|
|
|
#![feature(const_pin)]
|
2022-09-14 14:15:44 +02:00
|
|
|
#![feature(const_waker)]
|
2019-11-02 22:12:51 +02:00
|
|
|
#![feature(never_type)]
|
|
|
|
#![feature(unwrap_infallible)]
|
2022-08-01 21:50:21 +04:00
|
|
|
#![feature(pointer_byte_offsets)]
|
2022-10-07 21:46:28 +02:00
|
|
|
#![feature(pointer_is_aligned)]
|
2021-11-30 10:50:44 -05:00
|
|
|
#![feature(portable_simd)]
|
2021-03-26 16:10:21 -04:00
|
|
|
#![feature(ptr_metadata)]
|
2020-01-14 13:34:23 +10:00
|
|
|
#![feature(once_cell)]
|
2021-12-15 01:58:01 +08:00
|
|
|
#![feature(option_result_contains)]
|
2020-10-19 15:38:11 +02:00
|
|
|
#![feature(unsized_tuple_coercion)]
|
2020-11-17 19:29:15 +01:00
|
|
|
#![feature(const_option)]
|
2021-12-15 01:58:01 +08:00
|
|
|
#![feature(const_option_ext)]
|
2021-10-17 01:18:00 +09:00
|
|
|
#![feature(const_result)]
|
2020-11-22 09:08:04 +01:00
|
|
|
#![feature(integer_atomics)]
|
2021-09-02 01:28:47 -04:00
|
|
|
#![feature(int_roundings)]
|
2020-12-10 10:16:29 +01:00
|
|
|
#![feature(slice_group_by)]
|
2021-03-17 17:23:09 +01:00
|
|
|
#![feature(split_array)]
|
2022-04-01 00:19:10 -07:00
|
|
|
#![feature(strict_provenance)]
|
2022-05-10 17:04:26 -07:00
|
|
|
#![feature(strict_provenance_atomic_ptr)]
|
2021-01-04 01:08:13 +01:00
|
|
|
#![feature(trusted_random_access)]
|
2021-03-26 16:10:21 -04:00
|
|
|
#![feature(unsize)]
|
2021-10-23 22:51:22 +03:00
|
|
|
#![feature(const_array_from_ref)]
|
|
|
|
#![feature(const_slice_from_ref)]
|
2021-12-12 17:55:41 +08:00
|
|
|
#![feature(waker_getters)]
|
2022-04-01 20:07:28 -04:00
|
|
|
#![feature(slice_flatten)]
|
2021-12-15 16:17:16 +00:00
|
|
|
#![feature(provide_any)]
|
2022-08-20 12:49:20 -04:00
|
|
|
#![feature(utf8_chunks)]
|
2022-09-27 11:55:13 +05:30
|
|
|
#![feature(is_ascii_octdigit)]
|
2021-03-28 14:24:49 +02:00
|
|
|
#![feature(get_many_mut)]
|
2020-11-19 18:32:35 +01:00
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
2022-11-20 11:28:08 +01:00
|
|
|
#![deny(fuzzy_provenance_casts)]
|
2014-06-28 13:57:36 -07:00
|
|
|
|
|
|
|
extern crate test;
|
|
|
|
|
2019-04-30 08:23:14 +02:00
|
|
|
mod alloc;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod any;
|
2015-08-29 18:30:05 +02:00
|
|
|
mod array;
|
2018-03-08 22:55:54 -05:00
|
|
|
mod ascii;
|
2022-05-22 07:18:32 -03:00
|
|
|
mod asserting;
|
2014-08-04 15:42:36 -07:00
|
|
|
mod atomic;
|
2019-09-07 15:49:27 +01:00
|
|
|
mod bool;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod cell;
|
|
|
|
mod char;
|
2015-10-15 21:07:20 +02:00
|
|
|
mod clone;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod cmp;
|
2020-12-26 01:59:08 +01:00
|
|
|
mod const_ptr;
|
2021-12-05 18:46:29 +08:00
|
|
|
mod convert;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod fmt;
|
2021-12-07 21:10:39 -05:00
|
|
|
mod future;
|
2014-12-12 18:43:07 -08:00
|
|
|
mod hash;
|
2015-10-15 21:07:20 +02:00
|
|
|
mod intrinsics;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod iter;
|
2020-01-14 13:34:23 +10:00
|
|
|
mod lazy;
|
2020-11-22 09:08:04 +01:00
|
|
|
mod macros;
|
2018-07-27 12:12:55 +02:00
|
|
|
mod manually_drop;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod mem;
|
2014-12-23 15:52:02 -05:00
|
|
|
mod nonzero;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod num;
|
|
|
|
mod ops;
|
|
|
|
mod option;
|
2022-09-27 19:09:32 +00:00
|
|
|
mod panic;
|
2017-12-17 14:44:03 -08:00
|
|
|
mod pattern;
|
2020-09-13 01:55:34 +02:00
|
|
|
mod pin;
|
2022-01-24 01:41:37 +01:00
|
|
|
mod pin_macro;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod ptr;
|
|
|
|
mod result;
|
2021-10-22 00:47:12 -07:00
|
|
|
mod simd;
|
2014-08-06 20:48:25 -07:00
|
|
|
mod slice;
|
2014-08-18 21:43:43 -04:00
|
|
|
mod str;
|
2018-04-05 15:55:28 +02:00
|
|
|
mod str_lossy;
|
2020-09-04 01:04:34 +02:00
|
|
|
mod task;
|
2018-05-01 13:43:05 +02:00
|
|
|
mod time;
|
2014-06-28 13:57:36 -07:00
|
|
|
mod tuple;
|
2020-11-22 09:08:04 +01:00
|
|
|
mod unicode;
|
2021-12-12 17:55:41 +08:00
|
|
|
mod waker;
|