tts-rs/Cargo.toml

38 lines
905 B
TOML
Raw Normal View History

2018-12-14 19:35:49 +00:00
[package]
name = "tts"
version = "0.6.2"
2018-12-14 19:35:49 +00:00
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
2020-06-09 12:56:13 +00:00
repository = "https://github.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"
2020-08-18 19:17:06 +00:00
[lib]
2020-08-18 20:16:30 +00:00
crate-type = ["lib", "staticlib"]
2020-08-18 19:17:06 +00:00
2018-12-14 19:35:49 +00:00
[dependencies]
lazy_static = "1"
2018-12-14 19:35:49 +00:00
log = "0.4"
thiserror = "1"
2018-12-14 19:35:49 +00:00
[dev-dependencies]
env_logger = "0.7"
2019-03-25 19:15:08 +00:00
[target.'cfg(windows)'.dependencies]
tolk = "0.2"
winrt = "0.7"
tts_winrt_bindings = { version = "0.1", path="winrt_bindings" }
2019-03-25 19:15:08 +00:00
2018-12-14 19:35:49 +00:00
[target.'cfg(target_os = "linux")'.dependencies]
speech-dispatcher = "0.6"
2018-12-30 17:13:48 +00:00
2020-08-18 20:16:30 +00:00
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
cocoa-foundation = "0.1"
libc = "0.2"
objc = "0.2"
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", ] }