mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-04-22 07:58:04 +00:00
805a3435cf
Closes #26!
11 lines
197 B
Rust
11 lines
197 B
Rust
#![feature(core, io, path, std_misc, unicode)]
|
|
|
|
extern crate unicode;
|
|
|
|
pub use ser::{Serialize, Serializer};
|
|
pub use de::{Deserialize, Deserializer, Error};
|
|
|
|
pub mod ser;
|
|
pub mod de;
|
|
pub mod json;
|