serde/serde.rs

28 lines
373 B
Rust
Raw Normal View History

2014-05-16 23:21:05 -05:00
#![feature(macro_rules, phase)]
extern crate collections;
// test harness access
#[cfg(test)]
extern crate test;
#[phase(syntax, link)]
extern crate log;
#[cfg(test)]
extern crate serialize;
2014-05-16 23:21:05 -05:00
pub mod de;
//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 00:20:06 -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 00:20:06 -05:00
//#[cfg(test)]
//pub mod bench_vec;