lingual 1.0.4

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
12
13
14
15
16
17
pub use errors::Errors;
pub use language::{Lang, OptionLangExt};
pub use translation::Translation;

mod errors;
mod token;
mod translation;
mod url;

pub mod language;

#[cfg(feature = "blocking")]
pub mod blocking;
#[cfg(feature = "non-blocking")]
pub mod non_blocking;
#[cfg(feature = "wasm")]
pub mod wasm;