wavekat-tts 0.0.4

Unified text-to-speech for voice pipelines with multiple backend support
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "wavekat-tts"
version = "0.0.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified text-to-speech for voice pipelines with multiple backend support"
readme = "README.md"
keywords = [
    "tts",
    "speech",
    "audio",
    "voice",
    "text-to-speech",
]
categories = ["multimedia::audio"]
license = "Apache-2.0"
repository = "https://github.com/wavekat/wavekat-tts"

[features]
coreml = ["ort?/coreml"]
cosyvoice = [
    "dep:ort",
    "dep:ndarray",
]
cuda = ["ort?/cuda"]
default = []
qwen3-tts = [
    "dep:ort",
    "dep:ndarray",
    "dep:tokenizers",
    "dep:npyz",
    "dep:rand",
    "dep:hf-hub",
    "dep:realfft",
]
tensorrt = ["ort?/tensorrt"]

[lib]
name = "wavekat_tts"
path = "src/lib.rs"

[[example]]
name = "bench_rtf"
path = "examples/bench_rtf.rs"
required-features = ["qwen3-tts"]

[[example]]
name = "synthesize"
path = "examples/synthesize.rs"
required-features = ["qwen3-tts"]

[[example]]
name = "synthesize_clone"
path = "examples/synthesize_clone.rs"
required-features = ["qwen3-tts"]

[dependencies.hf-hub]
version = "0.5"
features = ["ureq"]
optional = true
default-features = false

[dependencies.ndarray]
version = "0.17"
optional = true

[dependencies.npyz]
version = "0.8"
optional = true

[dependencies.ort]
version = "2.0.0-rc.12"
optional = true

[dependencies.rand]
version = "0.9"
optional = true

[dependencies.realfft]
version = "3"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokenizers]
version = "0.21"
features = ["onig"]
optional = true
default-features = false

[dependencies.wavekat-core]
version = "0.0.8"
features = [
    "wav",
    "resample",
]