lingual 1.1.0

Free and Unlimited Language Translation (Google) API for Rust. Supports Async and Sync.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod errors;
mod langs;
mod translation;
mod translator;
pub use errors::{TranslationError, TranslationResult};
pub use langs::*;
pub use translation::Translation;
pub use translator::*;

#[macro_use]
mod cfg;