diff --git a/Cargo.toml b/Cargo.toml index ff8b155..3f73bda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,9 @@ edition = "2021" # 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] version = "0.6" default-features = false @@ -24,7 +27,7 @@ backtrace = "0.3" bevy_input_actionmap = { path = "../bevy_input_actionmap" } bevy_openal = { path = "../bevy_openal" } 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" derive_more = "0.99" futures-lite = "1"