1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]

//! Rust API for reading and querying the dict.cc offline translation database.

extern crate csv;
#[macro_use]
extern crate failure;
extern crate htmlescape;
extern crate serde;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate nom;
#[macro_use]
extern crate log;
extern crate regex;
#[macro_use]
extern crate prettytable;
extern crate itertools;
extern crate colored;


mod parse;
mod dict;
pub mod error;

pub use dict::*;
pub use parse::word_ast;