2020-12-03 21:39:35 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_tts"
|
2022-12-20 21:12:34 +00:00
|
|
|
version = "0.3.0"
|
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"
|
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-09-07 18:07:37 +00:00
|
|
|
default = ["speech_dispatcher_0_11", "tolk"]
|
2022-12-06 19:22:26 +00:00
|
|
|
speech_dispatcher_0_9 = ["tts/speech_dispatcher_0_9"]
|
2022-03-10 21:33:37 +00:00
|
|
|
speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"]
|
2022-09-07 18:07:37 +00:00
|
|
|
speech_dispatcher_0_11 = ["tts/speech_dispatcher_0_11"]
|
2021-01-21 17:41:36 +00:00
|
|
|
tolk = ["tts/tolk"]
|
2020-12-03 21:39:35 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-12-06 19:22:26 +00:00
|
|
|
bevy = { version = "0.9", default-features = false }
|
2021-03-01 17:21:07 +00:00
|
|
|
crossbeam-channel = "0.5"
|
2022-12-06 19:22:26 +00:00
|
|
|
tts = { version = "0.25", default-features = false }
|
2021-04-05 18:06:39 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-12-06 19:22:26 +00:00
|
|
|
bevy = { version = "0.9", default-features = true }
|
2022-08-29 17:50:09 +00:00
|
|
|
|
|
|
|
[package.metadata.release]
|
|
|
|
publish = false
|
|
|
|
push = false
|
2022-08-29 22:24:22 +00:00
|
|
|
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]
|
2022-12-20 21:05:56 +00:00
|
|
|
pre-release-commit-message = "Release"
|