1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#![deny(warnings)]

#[cfg(test)]
extern crate partial_io;
#[cfg(test)]
#[macro_use]
extern crate quickcheck;

extern crate byteorder;
extern crate bytes;
extern crate iovec;
#[macro_use]
extern crate lazy_static;
extern crate owning_ref;
extern crate safemem;
#[macro_use]
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_schema;

mod internal;
mod schema;

pub mod error;

pub mod de;
pub mod ser;

pub use error::Error;

pub use de::{Deserializer, StreamDeserializer};
pub use ser::StreamSerializer;