v0.6.2
This release provides pre-built dictionaries for vibrato-rkyv v0.6.x.
These dictionaries are serialized in a zero-copy format and compressed with Zstandard. It is recommended to load them with the new Dictionary::from_zstd() function introduced in this version, which automatically handles decompression and caching for fast startups.
mecab-ipadic.tar- Source: MeCab IPADIC v2.7.0 (https://taku910.github.io/mecab/)
unidic-csj.tar- Source: UniDic-csj v3.1.1 (https://clrd.ninjal.ac.jp/unidic/)
unidic-cwj.tar- Source: UniDic-cwj v3.1.1 (https://clrd.ninjal.ac.jp/unidic/)
use vibrato_rkyv::Dictionary;
// Recommended: Automatically handles decompression and caching.
let dict = Dictionary::from_zstd("path/to/your/system.dic.zst")?;
// For manually decompressed files.
let dict = Dictionary::from_path("path/to/your/extracted/system.dic")?;