From d04107e94148a5b9612595e84250d2485377dddb Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Mon, 29 Aug 2022 17:20:19 -0500 Subject: [PATCH] Add support for speech-dispatcher 0.10.2. --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b23a798..e2e110e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,14 +10,15 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] -default = ["speech_dispatcher_0_10", "tolk"] +default = ["speech_dispatcher_0_10_2", "tolk"] speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"] +speech_dispatcher_0_10_2 = ["tts/speech_dispatcher_0_10_2"] tolk = ["tts/tolk"] [dependencies] bevy = { version = "0.8", default-features = false } crossbeam-channel = "0.5" -tts = { version = "0.23", default-features = false } +tts = { version = "0.23.1", default-features = false } [dev-dependencies] bevy = { version = "0.8", default-features = true }