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