2020-06-18 21:45:19 +00:00
|
|
|
// wasm32 does not support benches (no time).
|
|
|
|
#![cfg(not(target_arch = "wasm32"))]
|
2017-02-03 23:04:22 +00:00
|
|
|
#![feature(flt2dec)]
|
2021-09-05 18:54:29 +00:00
|
|
|
#![feature(int_log)]
|
2017-02-03 23:04:22 +00:00
|
|
|
#![feature(test)]
|
|
|
|
|
|
|
|
extern crate test;
|
|
|
|
|
|
|
|
mod any;
|
2019-03-18 22:32:36 +00:00
|
|
|
mod ascii;
|
2018-11-13 17:03:06 +00:00
|
|
|
mod char;
|
2019-12-07 04:18:12 +00:00
|
|
|
mod fmt;
|
2017-02-03 23:04:22 +00:00
|
|
|
mod hash;
|
|
|
|
mod iter;
|
|
|
|
mod num;
|
|
|
|
mod ops;
|
2019-12-16 14:33:16 +00:00
|
|
|
mod pattern;
|
2017-10-16 12:05:16 +00:00
|
|
|
mod slice;
|
2021-09-10 19:35:01 +00:00
|
|
|
mod str;
|