Add some basic docs

This commit is contained in:
Erick Tryzelaar
2015-03-31 22:33:18 -07:00
parent 55eb390778
commit dcf7037792
4 changed files with 14 additions and 0 deletions
+2
View File
@@ -1,3 +1,5 @@
//! Helper module to enable serializing bytes more efficiently
use std::ops;
use ser;
+2
View File
@@ -1,3 +1,5 @@
//! Generic deserialization framework.
use std::str;
pub mod impls;
+8
View File
@@ -1,3 +1,11 @@
//! 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, convert, core, std_misc, unicode)]
extern crate unicode;
+2
View File
@@ -1,3 +1,5 @@
//! Generic serialization framework.
use std::str;
pub mod impls;