Add speech_dispatcher_0_10 feature for building with newer speech-dispatcher.

This commit is contained in:
Nolan Darilek 2022-03-10 15:34:38 -06:00
parent 324e1c9603
commit b9ae909920

View File

@ -7,6 +7,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
speech_dispatcher_0_10 = ["bevy_tts/speech_dispatcher_0_10"]
[dependencies.bevy] [dependencies.bevy]
version = "0.6" version = "0.6"
default-features = false default-features = false
@ -24,7 +27,7 @@ backtrace = "0.3"
bevy_input_actionmap = { path = "../bevy_input_actionmap" } bevy_input_actionmap = { path = "../bevy_input_actionmap" }
bevy_openal = { path = "../bevy_openal" } bevy_openal = { path = "../bevy_openal" }
bevy_rapier2d = { version = "0.12", features = ["serde-serialize", "simd-stable"] } bevy_rapier2d = { version = "0.12", features = ["serde-serialize", "simd-stable"] }
bevy_tts = { path = "../bevy_tts" } bevy_tts = { path = "../bevy_tts", default-features = false, features = ["tolk"] }
coord_2d = "0.3" coord_2d = "0.3"
derive_more = "0.99" derive_more = "0.99"
futures-lite = "1" futures-lite = "1"