about summary refs log tree commit diff
path: root/library/core/benches/lib.rs
blob: 82c1789c24dad0be7cee7fc31469e6883bfaca4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// wasm32 does not support benches (no time).
#![cfg(not(target_arch = "wasm32"))]
#![feature(flt2dec)]
#![feature(test)]

extern crate test;

mod any;
mod ascii;
mod char;
mod fmt;
mod hash;
mod iter;
mod num;
mod ops;
mod pattern;
mod slice;
mod str;