]> git.lizzy.rs Git - rust.git/blob - library/core/benches/lib.rs
Merge commit '8da837185714cefbb261e93e9846afb11c1dc60e' into sync-rustfmt-subtree
[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;