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:36:49 +0000
committerbors-ng[bot] <bors-ng[bot]@users.noreply.github.com>2017-02-05 13:36:49 +0000
commit9931bc5318da6be3d3ea8ca5c298e132cf13ceac (patch)
treec3176aca5390a289292a90e1c0400efab22113e6 /src/lib.rs
parent4ef7cc6e85a3c17f341c3308b60e227e27e5e305 (diff)
parent8839c6a86ce52eb28471ef491b280f9e91b023cd (diff)
Merge #12
12: implement deserialization of std::io::Read
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 285a091..db5f3a7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -11,5 +11,5 @@ extern crate url;
pub mod de;
pub mod ser;
-pub use de::{Deserializer, from_bytes, from_str};
+pub use de::{Deserializer, from_bytes, from_str, from_reader};
pub use ser::{Serializer, to_string};