From 5c528f1d8e11ff61da6d917df3d89add1baf8266 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Sat, 9 Sep 2023 12:44:17 -0500 Subject: [PATCH] Bump version. --- Cargo.toml | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 99e2e26..5d4f317 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tts" -version = "0.25.5" +version = "0.25.6" authors = ["Nolan Darilek "] repository = "https://github.com/ndarilek/tts-rs" description = "High-level Text-To-Speech (TTS) interface" @@ -30,7 +30,14 @@ env_logger = "0.10" [target.'cfg(windows)'.dependencies] tolk = { version = "0.5", optional = true } -windows = { version = "0.51", features = ["Foundation", "Foundation_Collections", "Media_Core", "Media_Playback", "Media_SpeechSynthesis", "Storage_Streams"] } +windows = { version = "0.51", features = [ + "Foundation", + "Foundation_Collections", + "Media_Core", + "Media_Playback", + "Media_SpeechSynthesis", + "Storage_Streams", +] } [target.'cfg(target_os = "linux")'.dependencies] speech-dispatcher = { version = "0.16", default-features = false } @@ -43,7 +50,16 @@ objc = { version = "0.2", features = ["exception"] } [target.wasm32-unknown-unknown.dependencies] wasm-bindgen = "0.2" -web-sys = { version = "0.3", features = ["EventTarget", "SpeechSynthesis", "SpeechSynthesisErrorCode", "SpeechSynthesisErrorEvent", "SpeechSynthesisEvent", "SpeechSynthesisUtterance", "SpeechSynthesisVoice", "Window", ] } +web-sys = { version = "0.3", features = [ + "EventTarget", + "SpeechSynthesis", + "SpeechSynthesisErrorCode", + "SpeechSynthesisErrorEvent", + "SpeechSynthesisEvent", + "SpeechSynthesisUtterance", + "SpeechSynthesisVoice", + "Window", +] } [target.'cfg(target_os="android")'.dependencies] jni = "0.21" @@ -52,4 +68,4 @@ ndk-glue = "0.7" [package.metadata.docs.rs] no-default-features = true -features = ["speech_dispatcher_0_11"] \ No newline at end of file +features = ["speech_dispatcher_0_11"]