Use Bing Dictionary to translate words and phrases from Chinese to English or English to Chinese.
https://crates.io/crates/bing-dict
This crate uses reqwest to reach Bing Dictionary, so it can be well integrated into existing projects that use reqwest.
```rust
async fn main() { let result = bingdict::translate("dictionary").await.unwrap().unwrap(); println!("{:?}", result); println!("{}", result.tostring()); } ```
GNU General Public License v3.0