From 44f6c489cbc353d826b9bf396516758b367c97dc Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Sun, 30 Dec 2018 17:20:03 +0000 Subject: [PATCH] Indicate support for WebAssembly. --- README.md | 1 + src/lib.rs | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 04d9d57..4bfccb7 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,4 @@ This library provides a high-level Text-To-Speech (TTS) interface supporting various backends. Currently supported backends are: * [Speech Dispatcher](https://freebsoft.org/speechd) (Linux) + * WebAssembly diff --git a/src/lib.rs b/src/lib.rs index a9d897f..d1e9f42 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,8 @@ /*! * a Text-To-Speech (TTS) library providing high-level interfaces to a variety of backends. - * Currently supported backends are [Speech Dispatcher](https://freebsoft.org/speechd) (Linux). + * Currently supported backends are: + * * [Speech Dispatcher](https://freebsoft.org/speechd) (Linux) + * * WebAssembly */ use std::boxed::Box;