diff --git a/Cargo.toml b/Cargo.toml index 37edeb7..a087a72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tts" -version = "0.23.0" +version = "0.23.1" authors = ["Nolan Darilek "] repository = "https://github.com/ndarilek/tts-rs" description = "High-level Text-To-Speech (TTS) interface" @@ -13,7 +13,8 @@ crate-type = ["lib", "cdylib", "staticlib"] [features] speech_dispatcher_0_10 = ["speech-dispatcher/0_10"] -default = ["speech_dispatcher_0_10"] +speech_dispatcher_0_10_2 = ["speech-dispatcher/0_10_2"] +default = ["speech_dispatcher_0_10_2"] [dependencies] dyn-clonable = "0.9" @@ -31,7 +32,7 @@ tolk = { version = "0.5", optional = true } windows = { version = "0.39", features = ["Foundation", "Foundation_Collections", "Media_Core", "Media_Playback", "Media_SpeechSynthesis", "Storage_Streams"] } [target.'cfg(target_os = "linux")'.dependencies] -speech-dispatcher = { version = "0.13", default-features = false } +speech-dispatcher = { version = "0.14", default-features = false } [target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies] cocoa-foundation = "0.1"