wty 0.8.2

Yomitan-compatible dictionaries from wikitionary data
Documentation
//! Dictionary processing pipeline.

mod core;
mod glossary;
mod index;
mod ipa;
mod main;
mod release;
mod scan;
mod writer;

pub use core::{Dictionary, Intermediate, Langs, make_dict_from_jsonl};
use core::{LangCodeProbe, iter_datasets};

// Dictionary types
pub use glossary::{DGlossary, DGlossaryExtended};
pub use ipa::{DIpa, DIpaMerged};
pub use main::DMain;

pub use release::{make_dict_from_db, release};
pub use scan::scan;
pub use writer::WriterFormat;