From 2ea472e196fb93a52254a44ef0e956683df4f87d Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Tue, 28 Dec 2021 10:09:54 -0600 Subject: [PATCH] Bump Windows dependency, crate version, and remove `Debug` derive. --- Cargo.toml | 4 ++-- src/backends/winrt.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ef4beef..68332a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tts" -version = "0.19.1" +version = "0.19.2" authors = ["Nolan Darilek "] repository = "https://github.com/ndarilek/tts-rs" description = "High-level Text-To-Speech (TTS) interface" @@ -22,7 +22,7 @@ env_logger = "0.9" [target.'cfg(windows)'.dependencies] tolk = { version = "0.5", optional = true } -windows = { version = "0.28", features = ["alloc", "std", "Foundation", "Media_Core", "Media_Playback", "Media_SpeechSynthesis", "Storage_Streams"] } +windows = { version = "0.29", features = ["alloc", "std", "Foundation", "Media_Core", "Media_Playback", "Media_SpeechSynthesis", "Storage_Streams"] } [target.'cfg(target_os = "linux")'.dependencies] speech-dispatcher = "0.9" diff --git a/src/backends/winrt.rs b/src/backends/winrt.rs index e7c8634..943a78c 100644 --- a/src/backends/winrt.rs +++ b/src/backends/winrt.rs @@ -21,7 +21,7 @@ impl From for Error { } } -#[derive(Clone, Debug)] +#[derive(Clone)] pub struct WinRt { id: BackendId, synth: SpeechSynthesizer,