bevy_tts/Cargo.toml
Nolan Darilek 4d39402860
All checks were successful
continuous-integration/drone/push Build is passing
(cargo-release) version 0.1.1
2022-08-29 17:43:06 -05:00

31 lines
931 B
TOML

[package]
name = "bevy_tts"
description = "Text-to-speech for the Bevy game engine"
repository = "https://labs.lightsout.games/projects/bevy_tts"
version = "0.1.1"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
license = "MIT OR Apache-2.0"
edition = "2021"
# 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"]
tolk = ["tts/tolk"]
[dependencies]
bevy = { version = "0.8", default-features = false }
crossbeam-channel = "0.5"
tts = { version = "0.23.1", default-features = false }
[dev-dependencies]
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}}"]