bevy_tts/Cargo.toml

31 lines
931 B
TOML
Raw Normal View History

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 22:43:06 +00:00
version = "0.1.1"
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]
default = ["speech_dispatcher_0_10_2", "tolk"]
speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"]
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"
tts = { version = "0.23.1", default-features = false }
2021-04-05 18:06:39 +00:00
[dev-dependencies]
bevy = { version = "0.8", default-features = true }
[package.metadata.release]
tag-prefix = ""
publish = false
push = false
2022-08-29 22:24:22 +00:00
pre-release-hook = ["git-cliff", "-o", "CHANGELOG.md", "--tag", "{{version}}"]