mirror of
https://github.com/serde-rs/serde.git
synced 2025-09-29 22:11:09 +00:00
13 lines
183 B
Rust
13 lines
183 B
Rust
#![feature(macro_rules, phase)]
|
|
|
|
extern crate collections;
|
|
|
|
// test harness access
|
|
#[cfg(test)]
|
|
extern crate test;
|
|
#[phase(syntax, link)]
|
|
extern crate log;
|
|
|
|
pub mod de;
|
|
pub mod json;
|