about summary refs log tree commit diff
path: root/src/liballoc/benches/lib.rs
blob: 08c69ee6e85079aa8abb498f964b64d5a3a7f57e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(repr_simd)]
#![feature(slice_sort_by_cached_key)]
#![feature(test)]

extern crate rand;
extern crate rand_xorshift;
extern crate test;

mod btree;
mod linked_list;
mod string;
mod str;
mod slice;
mod vec;
mod vec_deque;