tts-rs/Cargo.toml

23 lines
567 B
TOML
Raw Normal View History

2018-12-14 19:35:49 +00:00
[package]
name = "tts"
version = "0.1.0"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
2018-12-28 15:43:21 +00:00
repository = "https://fossil.thewordnerd.info/tts-rs"
description = "High-level Text-To-Speech (TTS) interface"
license = "MIT"
2018-12-14 19:35:49 +00:00
edition = "2018"
[dependencies]
2018-12-30 17:13:48 +00:00
failure = "0.1"
2018-12-14 19:35:49 +00:00
log = "0.4"
[dev-dependencies]
env_logger = "0.6"
[target.'cfg(target_os = "linux")'.dependencies]
speech-dispatcher = "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", ] }