2014-05-16 23:21:05 -05:00
|
|
|
#![feature(macro_rules, phase)]
|
|
|
|
|
|
|
|
// test harness access
|
|
|
|
#[cfg(test)]
|
|
|
|
extern crate test;
|
2014-06-03 09:10:44 -05:00
|
|
|
|
2014-06-12 08:31:47 -05:00
|
|
|
#[phase(plugin, link)]
|
2014-05-16 23:21:05 -05:00
|
|
|
extern crate log;
|
|
|
|
|
2014-06-03 09:10:44 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate debug;
|
|
|
|
|
2014-05-21 22:54:10 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
extern crate serialize;
|
|
|
|
|
2014-05-16 23:21:05 -05:00
|
|
|
pub mod de;
|
2014-06-08 17:17:18 -05:00
|
|
|
pub mod ser;
|
2014-05-26 12:40:47 -05:00
|
|
|
pub mod json;
|
2014-05-23 22:41:29 -05:00
|
|
|
|
2014-05-24 17:02:24 -05:00
|
|
|
//#[cfg(test)]
|
|
|
|
//pub mod bench_bytes;
|
|
|
|
|
2014-05-26 11:43:51 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
pub mod bench_enum;
|
2014-05-23 22:41:29 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
2014-05-26 00:16:34 -05:00
|
|
|
pub mod bench_struct;
|
2014-05-23 22:41:29 -05:00
|
|
|
|
2014-05-26 11:31:17 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
pub mod bench_vec;
|
2014-05-26 11:23:05 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
pub mod bench_map;
|
2014-06-20 18:32:30 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
pub mod bench_log;
|