2020-12-03 21:39:35 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_tts"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
2021-04-10 09:19:45 +00:00
|
|
|
license = "mit"
|
2021-10-26 07:30:48 +00:00
|
|
|
edition = "2021"
|
2020-12-03 21:39:35 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[features]
|
2022-03-10 21:33:37 +00:00
|
|
|
default = ["speech_dispatcher_0_10", "tolk"]
|
|
|
|
speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"]
|
2021-01-21 17:41:36 +00:00
|
|
|
tolk = ["tts/tolk"]
|
2020-12-03 21:39:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-05-03 14:35:58 +00:00
|
|
|
bevy = { version = "0.7", default-features = false }
|
2021-03-01 17:21:07 +00:00
|
|
|
crossbeam-channel = "0.5"
|
2022-07-22 15:46:01 +00:00
|
|
|
tts = { version = "0.23", default-features = false }
|
2021-04-05 18:06:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-05-03 14:35:58 +00:00
|
|
|
bevy = { version = "0.7", default-features = true }
|