voice-toolkit 0.16.1

A comprehensive Rust toolkit for voice processing including STT, TTS, and audio utilities
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 = "2024"
name = "voice-toolkit"
version = "0.16.1"
authors = ["rs-voice-toolkit contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comprehensive Rust toolkit for voice processing including STT, TTS, and audio utilities"
readme = false
keywords = [
    "voice",
    "speech",
    "audio",
    "stt",
    "tts",
]
categories = ["multimedia::audio"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/soddygo/rs-voice-toolkit"
resolver = "2"

[features]
audio = ["dep:rs-voice-toolkit-audio"]
cuda = [
    "stt",
    "rs-voice-toolkit-stt/cuda",
]
default = [
    "stt",
    "audio",
]
metal = [
    "stt",
    "rs-voice-toolkit-stt/metal",
]
streaming = [
    "stt",
    "rs-voice-toolkit-stt/streaming",
]
stt = ["dep:rs-voice-toolkit-stt"]
tts = ["dep:rs-voice-toolkit-tts"]
vulkan = [
    "stt",
    "rs-voice-toolkit-stt/vulkan",
]

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

[[example]]
name = "streaming_examples"
path = "examples/streaming_examples.rs"

[[example]]
name = "usage_examples"
path = "examples/usage_examples.rs"

[dependencies.rs-voice-toolkit-audio]
version = "0.16.1"
optional = true

[dependencies.rs-voice-toolkit-stt]
version = "0.16.1"
optional = true

[dependencies.rs-voice-toolkit-tts]
version = "0.16.1"
optional = true

[dependencies.thiserror]
version = "2.0"

[dev-dependencies.tokio]
version = "1.52"
features = ["full"]