]> git.lizzy.rs Git - rust.git/blob - src/libcoretest/lib.rs
Auto merge of #31357 - rthomas:hashers, 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 #![deny(warnings)]
12
13 #![feature(as_unsafe_cell)]
14 #![feature(borrow_state)]
15 #![feature(box_syntax)]
16 #![feature(cell_extras)]
17 #![feature(const_fn)]
18 #![feature(core_float)]
19 #![feature(core_private_bignum)]
20 #![feature(core_private_diy_float)]
21 #![feature(dec2flt)]
22 #![feature(decode_utf16)]
23 #![feature(fixed_size_array)]
24 #![feature(float_extras)]
25 #![feature(flt2dec)]
26 #![feature(fmt_radix)]
27 #![feature(iter_arith)]
28 #![feature(iter_arith)]
29 #![feature(libc)]
30 #![feature(nonzero)]
31 #![feature(peekable_is_empty)]
32 #![feature(ptr_as_ref)]
33 #![feature(rand)]
34 #![feature(raw)]
35 #![feature(slice_patterns)]
36 #![feature(step_by)]
37 #![feature(test)]
38 #![feature(unboxed_closures)]
39 #![feature(unicode)]
40 #![feature(unique)]
41
42 extern crate core;
43 extern crate test;
44 extern crate libc;
45 extern crate rustc_unicode;
46 extern crate rand;
47
48 mod any;
49 mod array;
50 mod atomic;
51 mod cell;
52 mod char;
53 mod clone;
54 mod cmp;
55 mod fmt;
56 mod hash;
57 mod intrinsics;
58 mod iter;
59 mod mem;
60 mod nonzero;
61 mod num;
62 mod ops;
63 mod option;
64 mod ptr;
65 mod result;
66 mod slice;
67 mod str;
68 mod tuple;