A new rust translation crate

Introduction

I have created a Rust translation crate which has:

  • Google
  • Yandex

This crate doesn't need any API Key and translations are fast and free.
It is a cool crate but I want to implements some new functionnalities:

  • A macro translate which translate in the targeted lang of the cargo.toml
println!("{}",translate!("I love cookies."));

and toml

[translations]
src-lang = "EN"
target-lang = "FR"
translator = "google"
  • And sync version
  • A hyper based version instead of reqwest
  • A execution time macro
  • Add more translators
  • Make code faster

If you have any other suggestion or somebody wants to help me.

Link: translate_core - Rust
Thank's for reading, ccgauche.

3 Likes