Sync supported synths in README and lib.rs.

This commit is contained in:
Nolan Darilek 2020-08-13 11:15:23 -05:00
parent 4d980270be
commit cce1569c72
2 changed files with 9 additions and 7 deletions

View File

@ -9,5 +9,4 @@ This library provides a high-level Text-To-Speech (TTS) interface supporting var
* MacOS
* AppKit on MacOS 10.13 and below
* AVFoundation on MacOS 10.14 and, eventually, iDevices
* WebAssembly
* WebAssembly

View File

@ -1,12 +1,15 @@
/*!
* 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)
* * Windows screen readers and SAPI via [Tolk](https://github.com/dkager/tolk/)
* * Windows WinRT
* * MacOS `NSSpeechSynthesizer`
* * Windows
* * Screen readers/SAPI via Tolk
* * WinRT
* * Linux via [Speech Dispatcher](https://freebsoft.org/speechd)
* * MacOS
* * AppKit on MacOS 10.13 and below
* * AVFoundation on MacOS 10.14 and, eventually, iDevices
* * WebAssembly
*/
*/
#[cfg(target_os = "macos")]
use std::{boxed::Box, ffi::CStr};