#![cfg_attr(docsrs, allow(internal_features))]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(docsrs, feature(rustdoc_internals))]
#![cfg_attr(docsrs, feature(intra_doc_pointers))]
#![allow(rustdoc::private_intra_doc_links)]
#![warn(missing_docs)]
#![recursion_limit = "256"]
#![doc = include_str!("../README.md")]
#[cfg(test)]
extern crate self as morphix;
pub mod adapter;
mod batch;
mod error;
pub mod general;
pub mod helper;
pub mod impls;
mod mutation;
pub mod observe;
mod path;
pub use adapter::Adapter;
pub use batch::BatchTree;
pub use error::MutationError;
#[cfg(feature = "derive")]
pub use morphix_derive::{Observe, observe};
pub use mutation::{Mutation, MutationKind, Mutations};
pub use observe::Observe;
pub use path::{Path, PathSegment};