dfraw_json_parser 0.17.5

Library which parses Dwarf Fortress raw files into JSON
Documentation
mod object;
mod raw_metadata;
mod searchable;
mod token;

/// A Dwarf Fortress raw object
pub use object::RawObject;
/// Allows conversion from a raw object to any specific object
pub use object::RawObjectToAny;
#[allow(clippy::module_name_repetitions)]
/// Metadata about the raw file
pub use raw_metadata::Metadata as RawMetadata;
/// Prepares the data from the raw object to be turned into a search string
pub use searchable::clean_search_vec;
/// Gets the search string from the raw object
pub use searchable::get_search_string;
/// Provides the search functionality for the raw object
pub use searchable::Searchable;
/// A Dwarf Fortress raw object token
pub use token::RawObjectToken;
/// The complexity of a raw object token
pub use token::TokenComplexity;