From 6e71ba43eb6bd62f2b567224e387333016bd3a5c Mon Sep 17 00:00:00 2001 From: Sam Scott Date: Sat, 20 May 2017 22:07:44 +0100 Subject: Rewrite of most components. Simplify `ser` logic, and expand `de` functionality. --- src/lib.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index d11e49f..7269046 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -59,7 +59,9 @@ //! assert_eq!(rec_params, params); //! //! # } - +extern crate data_encoding; +#[macro_use] +extern crate error_chain; extern crate itoa; extern crate dtoa; #[macro_use] @@ -72,4 +74,4 @@ pub mod ser; #[doc(inline)] pub use de::{Deserializer, from_bytes, from_reader, from_str}; #[doc(inline)] -pub use ser::{Serializer, to_string}; +pub use ser::{QsSerializer, to_string}; -- cgit v1.2.3