char-coal 0.2.3

A command line dictionary
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Charcoal, a command line dictionary
//!
//! Charcoal uses youdao dict api and google speech. Inspired by wudao-dict.

pub mod app;
pub mod word;

pub use app::App;
pub use app::builder::AppBuilder;
pub use app::cache::Cache;
pub use app::cli::{Cli, Commands};
pub use app::config::Config;
pub use word::speech::Speech;
pub use word::{WordEntry, WordQuery};