1 2 3 4 5 6 7 8 9
//! Encoding of DBN records into [JSON lines](https://jsonlines.org). pub(crate) mod serialize; mod sync; pub use sync::{Encoder, EncoderBuilder}; #[cfg(feature = "async")] mod r#async; #[cfg(feature = "async")] pub use r#async::Encoder as AsyncEncoder;