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 * MacOS
* AppKit on MacOS 10.13 and below * AppKit on MacOS 10.13 and below
* AVFoundation on MacOS 10.14 and, eventually, iDevices * 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. * a Text-To-Speech (TTS) library providing high-level interfaces to a variety of backends.
* Currently supported backends are: * Currently supported backends are:
* * [Speech Dispatcher](https://freebsoft.org/speechd) (Linux) * * Windows
* * Windows screen readers and SAPI via [Tolk](https://github.com/dkager/tolk/) * * Screen readers/SAPI via Tolk
* * Windows WinRT * * WinRT
* * MacOS `NSSpeechSynthesizer` * * 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 * * WebAssembly
*/ */
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
use std::{boxed::Box, ffi::CStr}; use std::{boxed::Box, ffi::CStr};