tts-rs/src/backends/mod.rs

33 lines
521 B
Rust
Raw Normal View History

2018-12-14 19:35:49 +00:00
#[cfg(target_os = "linux")]
mod speech_dispatcher;
2019-03-25 19:15:08 +00:00
#[cfg(windows)]
mod tolk;
#[cfg(windows)]
pub(crate) mod winrt;
2018-12-30 17:13:48 +00:00
#[cfg(target_arch = "wasm32")]
mod web;
#[cfg(target_os = "macos")]
mod appkit;
#[cfg(target_os = "macos")]
mod av_foundation;
2018-12-14 19:35:49 +00:00
#[cfg(target_os = "linux")]
pub use self::speech_dispatcher::*;
2018-12-30 17:13:48 +00:00
2019-03-25 19:15:08 +00:00
#[cfg(windows)]
pub use self::tolk::*;
2018-12-30 17:13:48 +00:00
#[cfg(target_arch = "wasm32")]
pub use self::web::*;
#[cfg(target_os = "macos")]
pub use self::appkit::*;
#[cfg(target_os = "macos")]
pub use self::av_foundation::*;