]> git.lizzy.rs Git - rust.git/blob - library/core/benches/lib.rs
Auto merge of #96720 - JohnTitor:rollup-9jaaekr, r=JohnTitor
[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 #![feature(trusted_random_access)]
7
8 extern crate test;
9
10 mod any;
11 mod ascii;
12 mod char;
13 mod fmt;
14 mod hash;
15 mod iter;
16 mod num;
17 mod ops;
18 mod pattern;
19 mod slice;
20 mod str;