godot-tts/Cargo.toml
Nolan Darilek 795cc4790c Add utterance_begin and utterance_end signals.
Unfortunately, I can't figure out how to pass the utterance ID to these signals because I don't see that the GDNative Rust bindings support objects of one type creating objects of another (I.e. nodes creating references.) If I'm wrong, PRs or suggestions welcome.
2020-09-29 10:44:52 -05:00

17 lines
281 B
TOML

[package]
name = "godot-tts"
version = "0.1.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
edition = "2018"
[lib]
crate-type = ["staticlib", "cdylib"]
[dependencies]
env_logger = "0.7"
gdnative = "0.9"
tts = "0.8"
[target.'cfg(windows)'.dependencies]
tolk = ">= 0.2.1"