rust/library/alloc/benches/lib.rs

20 lines
408 B
Rust
Raw Normal View History

// Disabling on android for the time being
// See https://github.com/rust-lang/rust/issues/73535#event-3477699747
#![cfg(not(target_os = "android"))]
#![feature(btree_drain_filter)]
#![feature(map_first_last)]
#![feature(repr_simd)]
2021-03-16 14:41:26 +01:00
#![feature(slice_partition_dedup)]
#![feature(test)]
extern crate test;
2020-09-05 23:16:56 +02:00
mod binary_heap;
mod btree;
mod linked_list;
mod slice;
2019-12-22 23:42:04 +01:00
mod str;
mod string;
mod vec;
mod vec_deque;