X-Git-Url: https://git.chrismorgan.info/anymap/blobdiff_plain/035fb94cd2a1e75c4674240df644c86cd99d25c5..8e413e20653077a3a2172158fc5433fa387cd46b:/src/lib.rs diff --git a/src/lib.rs b/src/lib.rs index b5ae44a..7619367 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,10 +1,9 @@ //! This crate provides the `AnyMap` type, a safe and convenient store for one value of each type. -#![cfg_attr(feature = "unstable", feature(core, std_misc))] -#![cfg_attr(test, feature(test))] +#![cfg_attr(all(feature = "bench", test), feature(test))] #![warn(missing_docs, unused_results)] -#[cfg(test)] +#[cfg(all(feature = "bench", test))] extern crate test; use std::any::TypeId; @@ -290,6 +289,7 @@ impl<'a, A: ?Sized + UncheckedAnyExt, V: IntoBox> VacantEntry<'a, A, V> { } } +#[cfg(feature = "bench")] #[bench] fn bench_insertion(b: &mut ::test::Bencher) { b.iter(|| { @@ -300,6 +300,7 @@ fn bench_insertion(b: &mut ::test::Bencher) { }) } +#[cfg(feature = "bench")] #[bench] fn bench_get_missing(b: &mut ::test::Bencher) { b.iter(|| { @@ -310,6 +311,7 @@ fn bench_get_missing(b: &mut ::test::Bencher) { }) } +#[cfg(feature = "bench")] #[bench] fn bench_get_present(b: &mut ::test::Bencher) { b.iter(|| {