1#![warn(clippy::pedantic)] 2#![warn(clippy::nursery)] 3 4pub mod ser; 5#[cfg(test)] 6mod tests; 7 8pub use ser::{to_string, to_vec, to_writer};