wty/lib.rs
1//! A binary and library crate to make Yomitan dictionaries from Kaikki jsonlines.
2
3pub mod cli;
4pub mod dict;
5pub mod download;
6pub mod lang;
7pub mod models;
8pub mod path;
9mod tags;
10mod utils;
11
12use fxhash::FxBuildHasher;
13use indexmap::{IndexMap, IndexSet};
14
15type Map<K, V> = IndexMap<K, V, FxBuildHasher>;
16type Set<K> = IndexSet<K, FxBuildHasher>;