//! Serde Serialization Framework //! //! Serde is a powerful framework that enables serialization libraries to generically serialize //! Rust data structures without the overhead of runtime type information. In many situations, the //! handshake protocol between serializers and serializees can be completely optimized away, //! leaving serde to perform roughly the same speed as a hand written serializer for a specific //! type. #![feature(collections, core, std_misc)] pub use ser::{Serialize, Serializer}; pub use de::{Deserialize, Deserializer, Error}; pub mod ser; pub mod de; pub mod json; pub mod bytes;