mirror of
https://gitee.com/openharmony/third_party_rust_serde
synced 2024-11-23 15:01:05 +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;
|