Text To Speech module for Rust
Simple Text to Speech module for rust
Can be used for bots, websites etc.
Add this to your cargo.toml file:
toml
# [dependencies]
tts_rust = "LATEST_VERSION"
Replace LATESTVERSION with the newest version of ttsrust
```rust use ttsrust::textspeech;
fn main() { // Anything inside the double quotes (" ") will be spoken out text_speech("Hello, World!"); }
```
Thanks! :smile:
This repo is licensed under MIT license.