odict 3.3.0

A blazingly-fast dictionary file format for human languages
Documentation
#[cfg(feature = "config")]
pub mod config;

#[cfg(feature = "alias")]
pub mod alias;

#[cfg(feature = "http")]
pub mod download;

#[cfg(feature = "http")]
pub mod remote;

#[cfg(feature = "search")]
pub mod search;

#[cfg(feature = "markdown")]
mod md;

#[cfg(feature = "tokenize-latin")]
pub mod tokenize;

mod compress;
mod core;
mod error;
mod ext;
mod intern;
mod load;
mod odict;

pub mod format;
pub mod fs;
pub mod schema;

pub use self::compress::CompressOptions;
pub use self::core::*;
pub use self::error::*;
pub use self::ext::*;
pub use self::load::*;
pub use self::odict::*;

#[cfg(feature = "search")]
pub use self::search::*;