bevy_tts/Cargo.toml

32 lines
1002 B
TOML
Raw Normal View History

2020-12-03 21:39:35 +00:00
[package]
name = "bevy_tts"
2024-03-14 17:51:44 +00:00
version = "0.8.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"]
speech_dispatcher_0_9 = ["tts/speech_dispatcher_0_9"]
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]
2024-07-07 00:46:23 +00:00
bevy = { version = "0.14", default-features = false }
2021-03-01 17:21:07 +00:00
crossbeam-channel = "0.5"
2024-02-09 18:07:12 +00:00
tts = { version = "0.26", default-features = false }
2021-04-05 18:06:39 +00:00
[dev-dependencies]
2024-07-07 00:46:23 +00:00
bevy = { version = "0.14", default-features = true }
[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"