mirror of https://github.com/ndarilek/tts-rs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
51 lines
1.6 KiB
[package] |
|
name = "tts" |
|
version = "0.22.3" |
|
authors = ["Nolan Darilek <nolan@thewordnerd.info>"] |
|
repository = "https://github.com/ndarilek/tts-rs" |
|
description = "High-level Text-To-Speech (TTS) interface" |
|
license = "MIT" |
|
exclude = ["*.cfg", "*.yml"] |
|
edition = "2021" |
|
|
|
[lib] |
|
crate-type = ["lib", "cdylib", "staticlib"] |
|
|
|
[features] |
|
speech_dispatcher_0_10 = ["speech-dispatcher/0_10"] |
|
default = ["speech_dispatcher_0_10"] |
|
|
|
[dependencies] |
|
dyn-clonable = "0.9" |
|
lazy_static = "1" |
|
log = "0.4" |
|
thiserror = "1" |
|
unic-langid = "0.9.0" |
|
serde = { version = "1.0", optional = true, features = ["derive"] } |
|
|
|
[dev-dependencies] |
|
env_logger = "0.9" |
|
|
|
[target.'cfg(windows)'.dependencies] |
|
tolk = { version = "0.5", optional = true } |
|
windows = { version = "0.37", features = ["alloc", "Foundation", "Foundation_Collections", "Media_Core", "Media_Playback", "Media_SpeechSynthesis", "Storage_Streams"] } |
|
|
|
[target.'cfg(target_os = "linux")'.dependencies] |
|
speech-dispatcher = { version = "0.13", default-features = false } |
|
|
|
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies] |
|
cocoa-foundation = "0.1" |
|
core-foundation = "0.9" |
|
libc = "0.2" |
|
objc = { version = "0.2", features = ["exception"] } |
|
|
|
[target.wasm32-unknown-unknown.dependencies] |
|
wasm-bindgen = "0.2" |
|
web-sys = { version = "0.3", features = ["EventTarget", "SpeechSynthesis", "SpeechSynthesisErrorCode", "SpeechSynthesisErrorEvent", "SpeechSynthesisEvent", "SpeechSynthesisUtterance", "SpeechSynthesisVoice", "Window", ] } |
|
|
|
[target.'cfg(target_os="android")'.dependencies] |
|
jni = "0.19" |
|
ndk-glue = "0.6" |
|
|
|
[package.metadata.docs.rs] |
|
no-default-features = true |