Move the benchmarks into a benches/ directory

This commit is contained in:
Erick Tryzelaar
2014-09-06 20:41:13 -07:00
parent 3a5424b13c
commit 0cd64bfb14
6 changed files with 54 additions and 34 deletions
-21
View File
@@ -6,15 +6,9 @@
#[cfg(test)]
extern crate test;
#[phase(plugin, link)]
extern crate log;
#[phase(plugin)]
extern crate serde_macros;
#[cfg(test)]
extern crate debug;
#[cfg(test)]
extern crate serialize;
@@ -25,21 +19,6 @@ pub mod de;
pub mod ser;
pub mod json;
#[cfg(test)]
pub mod bench_enum;
#[cfg(test)]
pub mod bench_struct;
#[cfg(test)]
pub mod bench_vec;
#[cfg(test)]
pub mod bench_map;
#[cfg(test)]
pub mod bench_log;
// an inner module so we can use serde_macros.
mod serde {
pub use de;