Skip to content

Commit

Permalink
Add some basic docs
Browse files Browse the repository at this point in the history
  • Loading branch information
erickt committed Apr 1, 2015
1 parent 55eb390 commit dcf7037
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/bytes.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Helper module to enable serializing bytes more efficiently

use std::ops;

use ser;
Expand Down
2 changes: 2 additions & 0 deletions src/de/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Generic deserialization framework.

use std::str;

pub mod impls;
Expand Down
8 changes: 8 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down
2 changes: 2 additions & 0 deletions src/ser/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//! Generic serialization framework.

use std::str;

pub mod impls;
Expand Down

0 comments on commit dcf7037

Please sign in to comment.