lingual 1.0.2

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;
pub use translation::Translation;

mod errors;
mod language;

mod token;
mod translation;
mod url;

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