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