1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#![doc = include_str!("lib.md")]
#![forbid(unsafe_code)]
#![forbid(missing_docs)]
pub mod error;
pub mod file;
pub mod schema;
pub mod read;
#[cfg(feature = "async")]
#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
pub mod read_async;
pub mod write;
#[cfg(feature = "async")]
#[cfg_attr(docsrs, doc(cfg(feature = "async")))]
pub mod write_async;