mirror of https://github.com/ndarilek/tts-rs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
795 B
41 lines
795 B
#[cfg(target_os = "linux")] |
|
mod speech_dispatcher; |
|
|
|
#[cfg(all(windows, feature = "tolk"))] |
|
mod tolk; |
|
|
|
#[cfg(windows)] |
|
mod winrt; |
|
|
|
#[cfg(target_arch = "wasm32")] |
|
mod web; |
|
|
|
#[cfg(target_os = "macos")] |
|
mod appkit; |
|
|
|
#[cfg(any(target_os = "macos", target_os = "ios"))] |
|
mod av_foundation; |
|
|
|
#[cfg(target_os = "android")] |
|
mod android; |
|
|
|
#[cfg(target_os = "linux")] |
|
pub(crate) use self::speech_dispatcher::*; |
|
|
|
#[cfg(all(windows, feature = "tolk"))] |
|
pub(crate) use self::tolk::*; |
|
|
|
#[cfg(windows)] |
|
pub(crate) use self::winrt::*; |
|
|
|
#[cfg(target_arch = "wasm32")] |
|
pub(crate) use self::web::*; |
|
|
|
#[cfg(target_os = "macos")] |
|
pub(crate) use self::appkit::*; |
|
|
|
#[cfg(any(target_os = "macos", target_os = "ios"))] |
|
pub(crate) use self::av_foundation::*; |
|
|
|
#[cfg(target_os = "android")] |
|
pub(crate) use self::android::*;
|
|
|