wty 0.8.1

Yomitan-compatible dictionaries from wikitionary data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A binary and library crate to make Yomitan dictionaries from Kaikki jsonlines.

pub mod cli;
pub mod dict;
pub mod download;
pub mod lang;
pub mod models;
pub mod path;
mod tags;
mod utils;

use fxhash::FxBuildHasher;
use indexmap::{IndexMap, IndexSet};

type Map<K, V> = IndexMap<K, V, FxBuildHasher>;
type Set<K> = IndexSet<K, FxBuildHasher>;