2019-06-02 05:39:13 +00:00
|
|
|
#![feature(bound_cloned)]
|
2015-01-08 02:53:58 +00:00
|
|
|
#![feature(box_syntax)]
|
2018-04-06 20:45:31 +00:00
|
|
|
#![feature(cell_update)]
|
2015-09-20 16:34:33 +00:00
|
|
|
#![feature(core_private_bignum)]
|
|
|
|
#![feature(core_private_diy_float)]
|
2019-05-01 07:19:41 +00:00
|
|
|
#![feature(debug_map_key_value)]
|
2015-08-29 16:30:05 +00:00
|
|
|
#![feature(dec2flt)]
|
2017-07-06 15:13:29 +00:00
|
|
|
#![feature(exact_size_is_empty)]
|
2015-08-29 16:30:05 +00:00
|
|
|
#![feature(fixed_size_array)]
|
2015-06-10 20:33:52 +00:00
|
|
|
#![feature(flt2dec)]
|
2017-03-17 14:05:44 +00:00
|
|
|
#![feature(fmt_internals)]
|
2018-03-17 10:07:50 +00:00
|
|
|
#![feature(hashmap_internals)]
|
2018-10-11 16:53:15 +00:00
|
|
|
#![feature(is_sorted)]
|
2019-01-13 10:16:14 +00:00
|
|
|
#![feature(iter_once_with)]
|
2017-12-17 22:44:03 +00:00
|
|
|
#![feature(pattern)]
|
2018-02-09 09:47:18 +00:00
|
|
|
#![feature(range_is_empty)]
|
2015-06-10 20:33:52 +00:00
|
|
|
#![feature(raw)]
|
2019-04-24 15:18:29 +00:00
|
|
|
#![feature(saturating_neg)]
|
2015-06-10 20:33:52 +00:00
|
|
|
#![feature(slice_patterns)]
|
2017-03-21 01:38:03 +00:00
|
|
|
#![feature(sort_internals)]
|
2018-10-28 16:16:46 +00:00
|
|
|
#![feature(slice_partition_at_index)]
|
2017-05-23 09:24:25 +00:00
|
|
|
#![feature(specialization)]
|
2017-04-24 04:47:09 +00:00
|
|
|
#![feature(step_trait)]
|
2018-04-05 13:55:28 +00:00
|
|
|
#![feature(str_internals)]
|
2015-06-10 20:33:52 +00:00
|
|
|
#![feature(test)]
|
2017-05-23 09:24:25 +00:00
|
|
|
#![feature(trusted_len)]
|
2017-06-08 03:52:13 +00:00
|
|
|
#![feature(try_trait)]
|
2018-04-27 13:39:04 +00:00
|
|
|
#![feature(inner_deref)]
|
2018-05-05 17:02:05 +00:00
|
|
|
#![feature(slice_internals)]
|
2018-09-08 13:33:02 +00:00
|
|
|
#![feature(slice_partition_dedup)]
|
2019-02-28 13:47:32 +00:00
|
|
|
#![feature(int_error_matching)]
|
2019-04-30 06:23:14 +00:00
|
|
|
#![feature(const_fn)]
|
2019-07-09 19:39:19 +00:00
|
|
|
#![feature(iter_partition_in_place)]
|
|
|
|
#![feature(iter_is_partitioned)]
|
2014-06-28 20:57:36 +00:00
|
|
|
|
|
|
|
extern crate test;
|
|
|
|
|
2019-04-30 06:23:14 +00:00
|
|
|
mod alloc;
|
2014-06-28 20:57:36 +00:00
|
|
|
mod any;
|
2015-08-29 16:30:05 +00:00
|
|
|
mod array;
|
2018-03-09 03:55:54 +00:00
|
|
|
mod ascii;
|
2014-08-04 22:42:36 +00:00
|
|
|
mod atomic;
|
2014-06-28 20:57:36 +00:00
|
|
|
mod cell;
|
|
|
|
mod char;
|
2015-10-15 19:07:20 +00:00
|
|
|
mod clone;
|
2014-06-28 20:57:36 +00:00
|
|
|
mod cmp;
|
|
|
|
mod fmt;
|
2014-12-13 02:43:07 +00:00
|
|
|
mod hash;
|
2015-10-15 19:07:20 +00:00
|
|
|
mod intrinsics;
|
2014-06-28 20:57:36 +00:00
|
|
|
mod iter;
|
2018-07-27 10:12:55 +00:00
|
|
|
mod manually_drop;
|
2014-06-28 20:57:36 +00:00
|
|
|
mod mem;
|
2014-12-23 20:52:02 +00:00
|
|
|
mod nonzero;
|
2014-06-28 20:57:36 +00:00
|
|
|
mod num;
|
|
|
|
mod ops;
|
|
|
|
mod option;
|
2017-12-17 22:44:03 +00:00
|
|
|
mod pattern;
|
2014-06-28 20:57:36 +00:00
|
|
|
mod ptr;
|
|
|
|
mod result;
|
2014-08-07 03:48:25 +00:00
|
|
|
mod slice;
|
2014-08-19 01:43:43 +00:00
|
|
|
mod str;
|
2018-04-05 13:55:28 +00:00
|
|
|
mod str_lossy;
|
2018-05-01 11:43:05 +00:00
|
|
|
mod time;
|
2014-06-28 20:57:36 +00:00
|
|
|
mod tuple;
|