shori 0.1.0

Flexible parsing and transformation utilities for structured data. #[derive(Parser)] adds methods like .parse().json(), .toml(), .bin(), .map(), and .from() to simplify conversions using common wrappers like Arc, Mutex, Box, OnceCell, etc.
Documentation
#[cfg(feature = "mutex")]
pub mod parse_mutex;

#[cfg(feature = "arc")]
pub mod parse_arc;

#[cfg(feature = "box")]
pub mod parse_box;

#[cfg(feature = "oncecell")]
pub mod parse_once_cell;

#[cfg(feature = "refcell")]
pub mod parse_ref_cell;

#[cfg(feature = "unsafecell")]
pub mod parse_unsafe_cell;

#[cfg(feature = "vec")]
pub mod parse_vec;

#[cfg(feature = "hashmap")]
pub mod parse_hash_map;

#[cfg(feature = "tokio")]
pub mod parse_tokio_mutex;

#[cfg(feature = "serde_json")]
pub mod parse_json;

#[cfg(feature = "bincode")]
pub mod parse_bin;

#[cfg(feature = "toml")]
pub mod parse_toml;

pub mod parse;

pub mod prelude;

pub mod parse_by_field;