1
2
3
4
5
6
7
8
9
10
11
12
#![warn(unused_extern_crates)]
#![forbid(unsafe_code)]
pub mod de;
pub mod ser;
#[doc(inline)]
pub use crate::de::{from_bytes, from_reader, from_str, Deserializer};
#[doc(inline)]
pub use crate::ser::{to_string, Serializer};