]> git.lizzy.rs Git - rust.git/blob - library/core/benches/lib.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / library / core / benches / lib.rs
1 // wasm32 does not support benches (no time).
2 #![cfg(not(target_arch = "wasm32"))]
3 #![feature(flt2dec)]
4 #![feature(int_log)]
5 #![feature(test)]
6
7 extern crate test;
8
9 mod any;
10 mod ascii;
11 mod char;
12 mod fmt;
13 mod hash;
14 mod iter;
15 mod num;
16 mod ops;
17 mod pattern;
18 mod slice;
19 mod str;