From 61b7b7075227f25f509e0ca51909e0f873ed310f Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Sun, 21 May 2017 16:11:15 +0100 Subject: Refactor errors to be of a single type and export it. --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 7eed510..dff822e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -125,8 +125,11 @@ extern crate serde; extern crate url; mod de; +mod error; mod ser; +pub use error::Error; + #[doc(inline)] pub use de::{QsDeserializer, from_bytes, from_reader, from_str}; #[doc(inline)] -- cgit v1.2.3