aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-04-05 16:50:51 -0700
committerGitHub <noreply@github.com>2017-04-05 16:50:51 -0700
commit9698fb0b120ef0496a75e314bd59ed562d3a2562 (patch)
tree9f6e6d078a013873ff0a1cd405efce64b3470bcf /src/lib.rs
parentd07ec8d1d6ab55d08db32dc447e233008f368b94 (diff)
parentafb8c42d4706bbc342d13a6c5ebfb33dc960627f (diff)
downloadmilf-rs-9698fb0b120ef0496a75e314bd59ed562d3a2562.tar.gz
milf-rs-9698fb0b120ef0496a75e314bd59ed562d3a2562.zip
Merge pull request #161 from colin-kiegel/crate-polish
Crate polish
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4a27c7c..7b72eac 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,7 +1,5 @@
//! A [TOML]-parsing library
//!
-//! [TOML]: https://github.com/toml-lang/toml
-//!
//! This library implements a [TOML] v0.4.0 compatible parser,
//! primarily supporting the [`serde`] library for encoding/decoding
//! various types in Rust.
@@ -146,6 +144,7 @@
//! }
//! ```
//!
+//! [TOML]: https://github.com/toml-lang/toml
//! [Cargo]: https://crates.io/
//! [`serde`]: https://serde.rs/
@@ -156,9 +155,9 @@
extern crate serde;
pub mod value;
-mod datetime;
#[doc(no_inline)]
pub use value::Value;
+mod datetime;
pub mod ser;
#[doc(no_inline)]