]> git.lizzy.rs Git - rust.git/blob - src/libcoretest/lib.rs
Auto merge of #27696 - bluss:into-boxed-str, r=alexcrichton
[rust.git] / src / libcoretest / lib.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(as_unsafe_cell)]
12 #![feature(borrow_state)]
13 #![feature(box_syntax)]
14 #![feature(cell_extras)]
15 #![feature(const_fn)]
16 #![feature(core)]
17 #![feature(core_float)]
18 #![feature(float_extras)]
19 #![feature(float_from_str_radix)]
20 #![feature(flt2dec)]
21 #![feature(dec2flt)]
22 #![feature(fmt_radix)]
23 #![feature(iter_arith)]
24 #![feature(iter_arith)]
25 #![feature(iter_cmp)]
26 #![feature(iter_order)]
27 #![feature(libc)]
28 #![feature(nonzero)]
29 #![feature(num_bits_bytes)]
30 #![feature(ptr_as_ref)]
31 #![feature(rand)]
32 #![feature(range_inclusive)]
33 #![feature(raw)]
34 #![feature(result_expect)]
35 #![feature(slice_bytes)]
36 #![feature(slice_patterns)]
37 #![feature(step_by)]
38 #![feature(test)]
39 #![feature(unboxed_closures)]
40 #![feature(unicode)]
41 #![feature(unique)]
42
43 extern crate core;
44 extern crate test;
45 extern crate libc;
46 extern crate rustc_unicode;
47 extern crate rand;
48
49 mod any;
50 mod atomic;
51 mod cell;
52 mod char;
53 mod cmp;
54 mod fmt;
55 mod hash;
56 mod iter;
57 mod mem;
58 mod nonzero;
59 mod num;
60 mod ops;
61 mod option;
62 mod ptr;
63 mod result;
64 mod slice;
65 mod str;
66 mod tuple;