bevy_tts/Cargo.toml

19 lines
532 B
TOML
Raw Normal View History

2020-12-03 21:39:35 +00:00
[package]
name = "bevy_tts"
version = "0.1.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
2021-01-21 17:41:36 +00:00
default = ["tolk"]
tolk = ["tts/tolk"]
2020-12-03 21:39:35 +00:00
[dependencies]
2021-04-05 18:06:39 +00:00
bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = false }
2021-03-01 17:21:07 +00:00
crossbeam-channel = "0.5"
2021-04-05 18:10:04 +00:00
tts = "0.16"
2021-04-05 18:06:39 +00:00
[dev-dependencies]
bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = true }