tts_rust
Really Simple Text to Speech module for rust
Add this to your cargo.toml file:
tts_rust = "0.2.0"
fn main() { let english_speaker = tts_rust::TTS { volume: 1.5, language: "mr".to_string(), }; english_speaker.speak("Hello There!"); }