Skip to content

v0.6.2

Choose a tag to compare

@o24s o24s released this 16 Oct 14:27
· 38 commits to main since this release

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.

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")?;