odict 3.3.0

A blazingly-fast dictionary file format for human languages
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::error::Result;

pub(crate) mod constants;
#[allow(clippy::module_inception)]
mod download;
mod metadata;
mod options;
mod utils;

pub use download::DictionaryDownloader;
pub use options::DownloadOptions;
pub use utils::{classify_reqwest_error, parse_remote_dictionary_name, NetworkError};