tts_rust 0.1.3

Simple & easy text-to-speech module for creating bots and much more.
Documentation

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 -

Example

Cargo.toml

Add this to your cargo.toml file:

 # [dependencies]
   tts_rust = "0.1.0"

main.rs

use tts_rust::text_speech;

fn main() {
   // Anything inside the double quotes (" ") will be spoken out
    text_speech("Hello, World!");
}


Thanks! :smile:

This repo is licensed under MIT license.