[package]
edition = "2024"
name = "synapto-plugin-tts-google"
version = "0.1.0-dev.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Google Cloud text-to-speech plugin for the Synapto framework"
readme = false
license = "MPL-2.0"
repository = "https://github.com/synapto-ai/synapto"
resolver = "2"
[lib]
name = "synapto_plugin_tts_google"
path = "src/lib.rs"
[[test]]
name = "scenario_tests"
path = "tests/scenario_tests.rs"
[[test]]
name = "tts_google_integration_test"
path = "tests/tts_google_integration_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.data-encoding]
version = "2"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
default-features = false
[dependencies.serde_json]
version = "1"
features = ["alloc"]
default-features = false
[dependencies.synapto-credentials-google]
version = "0.1.0-dev.11"
[dependencies.synapto-interface]
version = "0.1.0-dev.12"
[dependencies.tokio]
version = "1"
features = [
"macros",
"signal",
"rt",
"rt-multi-thread",
"net",
"time",
"process",
"io-util",
"sync",
"time",
"rt",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.unicode-segmentation]
version = "1"
[dev-dependencies.synapto]
version = "0.1.0-dev.12"
[dev-dependencies.synapto-test]
version = "0.1.0-dev.12"
[lints.clippy]
disallowed_macros = "deny"
disallowed_methods = "deny"
let_underscore_must_use = "deny"
todo = "warn"
unwrap_used = "deny"
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "deny"