Text To Speech module for Rust

Simple Text to Speech module for rust

Can be used for bots, websites etc.

Made with rust

Module available at -

Cargo.toml

Add this to your cargo.toml file: toml # [dependencies] tts_rust = "0.1.0"

main.rs

```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.