tts-rs/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2018-12-14 19:35:49 +00:00
[package]
name = "tts"
2021-03-11 19:44:00 +00:00
version = "0.15.0"
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]
crate-type = ["lib", "cdylib", "staticlib"]
2020-08-18 19:17:06 +00:00
2018-12-14 19:35:49 +00:00
[dependencies]
dyn-clonable = "0.9"
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]
2020-10-30 15:28:02 +00:00
env_logger = "0.8"
2019-03-25 19:15:08 +00:00
[target.'cfg(windows)'.dependencies]
tolk = { version = "0.3", optional = true }
windows = "0.4"
[target.'cfg(windows)'.build-dependencies]
windows = "0.4"
2018-12-14 19:35:49 +00:00
[target.'cfg(target_os = "linux")'.dependencies]
speech-dispatcher = "0.7"
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 = ["EventTarget", "SpeechSynthesis", "SpeechSynthesisErrorCode", "SpeechSynthesisErrorEvent", "SpeechSynthesisEvent", "SpeechSynthesisUtterance", "Window", ] }
2020-12-27 15:41:11 +00:00
[target.'cfg(target_os="android")'.dependencies]
jni = "0.19"
ndk-glue = "0.3"