2020-12-03 21:39:35 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_tts"
|
2022-08-29 18:26:50 +00:00
|
|
|
description = "Text-to-speech for the Bevy game engine"
|
|
|
|
repository = "https://labs.lightsout.games/projects/bevy_tts"
|
2022-08-29 18:48:27 +00:00
|
|
|
version = "0.0.0"
|
2020-12-03 21:39:35 +00:00
|
|
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
2022-08-29 18:26:50 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
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-08-29 22:20:19 +00:00
|
|
|
default = ["speech_dispatcher_0_10_2", "tolk"]
|
2022-03-10 21:33:37 +00:00
|
|
|
speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"]
|
2022-08-29 22:20:19 +00:00
|
|
|
speech_dispatcher_0_10_2 = ["tts/speech_dispatcher_0_10_2"]
|
2021-01-21 17:41:36 +00:00
|
|
|
tolk = ["tts/tolk"]
|
2020-12-03 21:39:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-08-01 16:10:50 +00:00
|
|
|
bevy = { version = "0.8", default-features = false }
|
2021-03-01 17:21:07 +00:00
|
|
|
crossbeam-channel = "0.5"
|
2022-08-29 22:20:19 +00:00
|
|
|
tts = { version = "0.23.1", default-features = false }
|
2021-04-05 18:06:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-29 17:50:09 +00:00
|
|
|
bevy = { version = "0.8", default-features = true }
|
|
|
|
|
|
|
|
[package.metadata.release]
|
|
|
|
tag-prefix = ""
|
|
|
|
publish = false
|
|
|
|
push = false
|
|
|
|
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]
|