2020-03-06 19:40:54 -06:00
|
|
|
#![feature(alloc_layout_extra)]
|
2020-05-18 14:24:37 -05:00
|
|
|
#![feature(array_chunks)]
|
2020-09-22 14:35:43 -05:00
|
|
|
#![feature(array_from_ref)]
|
2020-08-30 14:07:23 -05:00
|
|
|
#![feature(array_methods)]
|
2020-08-06 17:08:56 -05:00
|
|
|
#![feature(array_map)]
|
2020-08-13 14:09:14 -05:00
|
|
|
#![feature(array_windows)]
|
2019-09-07 09:49:27 -05:00
|
|
|
#![feature(bool_to_option)]
|
2019-06-02 00:39:13 -05:00
|
|
|
#![feature(bound_cloned)]
|
2015-01-07 20:53:58 -06:00
|
|
|
#![feature(box_syntax)]
|
2018-04-06 15:45:31 -05:00
|
|
|
#![feature(cell_update)]
|
2020-09-24 09:41:40 -05:00
|
|
|
#![feature(const_assume)]
|
|
|
|
#![feature(core_intrinsics)]
|
2015-09-20 11:34:33 -05:00
|
|
|
#![feature(core_private_bignum)]
|
|
|
|
#![feature(core_private_diy_float)]
|
2019-11-24 14:44:19 -06:00
|
|
|
#![feature(debug_non_exhaustive)]
|
2015-08-29 11:30:05 -05:00
|
|
|
#![feature(dec2flt)]
|
2020-09-04 13:17:06 -05:00
|
|
|
#![feature(div_duration)]
|
|
|
|
#![feature(duration_consts_2)]
|
2020-08-30 12:31:34 -05:00
|
|
|
#![feature(duration_constants)]
|
|
|
|
#![feature(duration_saturating_ops)]
|
2020-09-04 13:17:06 -05:00
|
|
|
#![feature(duration_zero)]
|
2017-07-06 10:13:29 -05:00
|
|
|
#![feature(exact_size_is_empty)]
|
2015-08-29 11:30:05 -05:00
|
|
|
#![feature(fixed_size_array)]
|
2015-06-10 15:33:52 -05:00
|
|
|
#![feature(flt2dec)]
|
2017-03-17 09:05:44 -05:00
|
|
|
#![feature(fmt_internals)]
|
2018-03-17 05:07:50 -05:00
|
|
|
#![feature(hashmap_internals)]
|
2019-08-06 06:13:13 -05:00
|
|
|
#![feature(try_find)]
|
2018-10-11 11:53:15 -05:00
|
|
|
#![feature(is_sorted)]
|
2017-12-17 16:44:03 -06:00
|
|
|
#![feature(pattern)]
|
2015-06-10 15:33:52 -05:00
|
|
|
#![feature(raw)]
|
2017-03-20 20:38:03 -05:00
|
|
|
#![feature(sort_internals)]
|
2018-10-28 11:16:46 -05:00
|
|
|
#![feature(slice_partition_at_index)]
|
2020-06-16 06:07:15 -05:00
|
|
|
#![feature(min_specialization)]
|
2017-04-23 23:47:09 -05:00
|
|
|
#![feature(step_trait)]
|
2020-02-18 12:18:33 -06:00
|
|
|
#![feature(step_trait_ext)]
|
2018-04-05 08:55:28 -05:00
|
|
|
#![feature(str_internals)]
|
2015-06-10 15:33:52 -05:00
|
|
|
#![feature(test)]
|
2017-05-23 04:24:25 -05:00
|
|
|
#![feature(trusted_len)]
|
2017-06-07 22:52:13 -05:00
|
|
|
#![feature(try_trait)]
|
2018-05-05 12:02:05 -05:00
|
|
|
#![feature(slice_internals)]
|
2018-09-08 08:33:02 -05:00
|
|
|
#![feature(slice_partition_dedup)]
|
2019-02-28 07:47:32 -06:00
|
|
|
#![feature(int_error_matching)]
|
2019-07-26 06:27:13 -05:00
|
|
|
#![feature(array_value_iter)]
|
2020-09-19 03:26:46 -05:00
|
|
|
#![feature(iter_advance_by)]
|
2019-07-09 14:39:19 -05:00
|
|
|
#![feature(iter_partition_in_place)]
|
|
|
|
#![feature(iter_is_partitioned)]
|
2019-06-28 07:43:32 -05:00
|
|
|
#![feature(iter_order_by)]
|
2019-08-31 16:00:15 -05:00
|
|
|
#![feature(cmp_min_max_by)]
|
2020-01-24 05:49:34 -06:00
|
|
|
#![feature(iter_map_while)]
|
2020-09-18 12:23:50 -05:00
|
|
|
#![feature(const_mut_refs)]
|
2020-09-12 18:55:34 -05:00
|
|
|
#![feature(const_pin)]
|
2019-12-20 14:42:03 -06:00
|
|
|
#![feature(const_slice_from_raw_parts)]
|
|
|
|
#![feature(const_raw_ptr_deref)]
|
2019-11-02 15:12:51 -05:00
|
|
|
#![feature(never_type)]
|
|
|
|
#![feature(unwrap_infallible)]
|
2020-04-21 16:56:59 -05:00
|
|
|
#![feature(option_unwrap_none)]
|
2020-05-17 19:15:15 -05:00
|
|
|
#![feature(peekable_next_if)]
|
2020-06-22 07:36:35 -05:00
|
|
|
#![feature(partition_point)]
|
2020-01-13 21:34:23 -06:00
|
|
|
#![feature(once_cell)]
|
2020-06-24 06:15:37 -05:00
|
|
|
#![feature(unsafe_block_in_unsafe_fn)]
|
2020-09-08 14:39:13 -05:00
|
|
|
#![feature(int_bits_const)]
|
2020-06-24 06:15:37 -05:00
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
2014-06-28 15:57:36 -05:00
|
|
|
|
|
|
|
extern crate test;
|
|
|
|
|
2019-04-30 01:23:14 -05:00
|
|
|
mod alloc;
|
2014-06-28 15:57:36 -05:00
|
|
|
mod any;
|
2015-08-29 11:30:05 -05:00
|
|
|
mod array;
|
2018-03-08 21:55:54 -06:00
|
|
|
mod ascii;
|
2014-08-04 17:42:36 -05:00
|
|
|
mod atomic;
|
2019-09-07 09:49:27 -05:00
|
|
|
mod bool;
|
2014-06-28 15:57:36 -05:00
|
|
|
mod cell;
|
|
|
|
mod char;
|
2015-10-15 14:07:20 -05:00
|
|
|
mod clone;
|
2014-06-28 15:57:36 -05:00
|
|
|
mod cmp;
|
|
|
|
mod fmt;
|
2014-12-12 20:43:07 -06:00
|
|
|
mod hash;
|
2015-10-15 14:07:20 -05:00
|
|
|
mod intrinsics;
|
2014-06-28 15:57:36 -05:00
|
|
|
mod iter;
|
2020-01-13 21:34:23 -06:00
|
|
|
mod lazy;
|
2018-07-27 05:12:55 -05:00
|
|
|
mod manually_drop;
|
2014-06-28 15:57:36 -05:00
|
|
|
mod mem;
|
2014-12-23 14:52:02 -06:00
|
|
|
mod nonzero;
|
2014-06-28 15:57:36 -05:00
|
|
|
mod num;
|
|
|
|
mod ops;
|
|
|
|
mod option;
|
2017-12-17 16:44:03 -06:00
|
|
|
mod pattern;
|
2020-09-12 18:55:34 -05:00
|
|
|
mod pin;
|
2014-06-28 15:57:36 -05:00
|
|
|
mod ptr;
|
|
|
|
mod result;
|
2014-08-06 22:48:25 -05:00
|
|
|
mod slice;
|
2014-08-18 20:43:43 -05:00
|
|
|
mod str;
|
2018-04-05 08:55:28 -05:00
|
|
|
mod str_lossy;
|
2018-05-01 06:43:05 -05:00
|
|
|
mod time;
|
2014-06-28 15:57:36 -05:00
|
|
|
mod tuple;
|