char-coal 0.1.0

A command line dictionary
Documentation
//! Charcoal, a command line dictionary
//!
//! Charcoal uses youdao dict api and google speech. Inspired by wudao-dict.

#![allow(dead_code)]

pub mod builder;
pub mod cache;
pub mod cli;
pub mod config;
pub mod display;
pub mod entry;
pub mod select;
pub mod speech;

pub use builder::AppBuilder;
pub use cache::Cache;
pub use cli::{Cli, Command};
pub use config::Config;
pub use entry::WordEntry;
pub use select::Select;
pub use speech::Speech;