#![cfg_attr(feature = "tree", doc = "[`tree`] ")]
#![cfg_attr(not(feature = "tree"), doc = "`tree` ")]
#![cfg_attr(feature = "writer", doc = "[`writer`] ")]
#![cfg_attr(not(feature = "writer"), doc = "`writer` ")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![forbid(unsafe_code)]
#![warn(missing_docs)]
#![warn(clippy::missing_docs_in_private_items)]
pub mod low;
pub mod pull_parser;
#[cfg(feature = "tree")]
#[cfg_attr(docsrs, doc(cfg(feature = "tree")))]
pub mod tree;
#[cfg(feature = "writer")]
#[cfg_attr(docsrs, doc(cfg(feature = "writer")))]
pub mod writer;