tts-rs/Cargo.toml

26 lines
731 B
TOML
Raw Normal View History

2018-12-14 19:35:49 +00:00
[package]
name = "tts"
version = "0.2.3"
2018-12-14 19:35:49 +00:00
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
2019-09-10 14:46:24 +00:00
repository = "https://gitlab.com/ndarilek/tts-rs"
2018-12-28 15:43:21 +00:00
description = "High-level Text-To-Speech (TTS) interface"
license = "MIT"
2019-01-03 16:16:41 +00:00
exclude = ["*.cfg", "*.yml"]
2018-12-14 19:35:49 +00:00
edition = "2018"
[dependencies]
env_logger = "0.7"
2018-12-14 19:35:49 +00:00
log = "0.4"
thiserror = "1"
2018-12-14 19:35:49 +00:00
2019-03-25 19:15:08 +00:00
[target.'cfg(windows)'.dependencies]
tolk = "0.2"
winrt = { git = "https://github.com/microsoft/winrt-rs", rev = "ed46a71f506c343b3eb4fa6c15a4d9db1397ebcf" }
2019-03-25 19:15:08 +00:00
2018-12-14 19:35:49 +00:00
[target.'cfg(target_os = "linux")'.dependencies]
2019-12-23 13:32:59 +00:00
speech-dispatcher = "0.4"
2018-12-30 17:13:48 +00:00
[target.wasm32-unknown-unknown.dependencies]
wasm-bindgen = "0.2"
web-sys = { version = "0.3", features = ["SpeechSynthesis", "SpeechSynthesisUtterance", "Window", ] }