]>
Commit | Line | Data |
---|---|---|
1a4d82fc | 1 | // Copyright 2014 The Rust Project Developers. See the COPYRIGHT |
223e47cc LB |
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 | ||
7453a54e SL |
11 | #![deny(warnings)] |
12 | ||
62682a34 SL |
13 | #![feature(as_unsafe_cell)] |
14 | #![feature(borrow_state)] | |
1a4d82fc | 15 | #![feature(box_syntax)] |
62682a34 | 16 | #![feature(cell_extras)] |
62682a34 | 17 | #![feature(const_fn)] |
62682a34 | 18 | #![feature(core_float)] |
b039eaaf SL |
19 | #![feature(core_private_bignum)] |
20 | #![feature(core_private_diy_float)] | |
e9174d1e | 21 | #![feature(dec2flt)] |
e9174d1e | 22 | #![feature(fixed_size_array)] |
62682a34 | 23 | #![feature(float_extras)] |
62682a34 | 24 | #![feature(flt2dec)] |
62682a34 | 25 | #![feature(iter_arith)] |
62682a34 SL |
26 | #![feature(libc)] |
27 | #![feature(nonzero)] | |
92a42be0 | 28 | #![feature(peekable_is_empty)] |
c34b1796 | 29 | #![feature(rand)] |
62682a34 | 30 | #![feature(raw)] |
62682a34 SL |
31 | #![feature(slice_patterns)] |
32 | #![feature(step_by)] | |
33 | #![feature(test)] | |
34 | #![feature(unboxed_closures)] | |
c34b1796 | 35 | #![feature(unicode)] |
c34b1796 | 36 | #![feature(unique)] |
223e47cc | 37 | |
1a4d82fc JJ |
38 | extern crate core; |
39 | extern crate test; | |
40 | extern crate libc; | |
d9579d0f AL |
41 | extern crate rustc_unicode; |
42 | extern crate rand; | |
223e47cc | 43 | |
1a4d82fc | 44 | mod any; |
e9174d1e | 45 | mod array; |
1a4d82fc JJ |
46 | mod atomic; |
47 | mod cell; | |
48 | mod char; | |
b039eaaf | 49 | mod clone; |
1a4d82fc | 50 | mod cmp; |
1a4d82fc JJ |
51 | mod fmt; |
52 | mod hash; | |
b039eaaf | 53 | mod intrinsics; |
1a4d82fc JJ |
54 | mod iter; |
55 | mod mem; | |
56 | mod nonzero; | |
57 | mod num; | |
58 | mod ops; | |
59 | mod option; | |
60 | mod ptr; | |
61 | mod result; | |
62 | mod slice; | |
63 | mod str; | |
64 | mod tuple; |