summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSam Scott <sam.scott89@gmail.com>2017-05-20 22:07:44 +0100
committerSam Scott <sam.scott89@gmail.com>2017-05-20 22:07:44 +0100
commit6e71ba43eb6bd62f2b567224e387333016bd3a5c (patch)
treefacec78176a03f5df9124949f7043188224e370c /src/lib.rs
parenta810aff7ab7891579d69fcdffefeaca3835ce533 (diff)
Rewrite of most components.
Simplify `ser` logic, and expand `de` functionality.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 4 insertions, 2 deletions
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};