summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorbors-ng[bot] <bors-ng[bot]@users.noreply.github.com>2017-02-05 13:47:23 +0000
committerbors-ng[bot] <bors-ng[bot]@users.noreply.github.com>2017-02-05 13:47:23 +0000
commitc0457909e41735b17b66e11a1d2cf1660f6b3c6d (patch)
treeae686e4dd5c3a28d19a7e2c80d3d34cc590ee901 /src/lib.rs
parent9931bc5318da6be3d3ea8ca5c298e132cf13ceac (diff)
parenta8def0d8656312b86e512fa6798f0ef09e7a3645 (diff)
Merge #13
13: Inline docs of reexports and bump version to 0.4.2
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index db5f3a7..bf7ad59 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -11,5 +11,7 @@ extern crate url;
pub mod de;
pub mod ser;
-pub use de::{Deserializer, from_bytes, from_str, from_reader};
+#[doc(inline)]
+pub use de::{Deserializer, from_bytes, from_reader, from_str};
+#[doc(inline)]
pub use ser::{Serializer, to_string};