mirror of
https://github.com/ndarilek/tts-rs.git
synced 2024-11-17 14:19:36 +00:00
27 lines
643 B
TOML
27 lines
643 B
TOML
[package]
|
|
name = "tts"
|
|
version = "0.2.0"
|
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
|
repository = "https://gitlab.com/ndarilek/tts-rs"
|
|
description = "High-level Text-To-Speech (TTS) interface"
|
|
license = "MIT"
|
|
exclude = ["*.cfg", "*.yml"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
failure = "0.1"
|
|
log = "0.4"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.6"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
tolk = "0.2"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
speech-dispatcher = "0.3"
|
|
|
|
[target.wasm32-unknown-unknown.dependencies]
|
|
wasm-bindgen = "0.2"
|
|
web-sys = { version = "0.3", features = ["SpeechSynthesis", "SpeechSynthesisUtterance", "Window", ] }
|