[package]
edition = "2021"
name = "vtx-engine"
version = "0.2.3"
build = "build.rs"
exclude = [
"build/",
"target/",
"*.dll",
"*.dylib",
"*.so",
"*.xcframework",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Voice processing and transcription engine - audio capture, speech detection, and Whisper transcription"
homepage = "https://github.com/keathmilligan/vtx-engine"
documentation = "https://docs.rs/vtx-engine"
readme = false
keywords = [
"audio",
"speech",
"transcription",
"whisper",
"vad",
]
categories = [
"multimedia::audio",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/keathmilligan/vtx-engine"
[features]
cuda = []
default = []
[lib]
name = "vtx_engine"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.directories]
version = "5"
[dependencies.futures]
version = "0.3"
[dependencies.hound]
version = "3.5"
[dependencies.libloading]
version = "0.8"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"stream",
]
[dependencies.rustfft]
version = "6.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[build-dependencies.reqwest]
version = "0.12"
features = ["blocking"]
[build-dependencies.zip]
version = "2"
[target.'cfg(target_os = "linux")'.dependencies.aec3]
version = "0.1"
[target.'cfg(target_os = "linux")'.dependencies.pipewire]
version = "0.8"
[target.'cfg(target_os = "macos")'.dependencies.aec3]
version = "0.1"
[target.'cfg(target_os = "macos")'.dependencies.block2]
version = "0.5"
[target.'cfg(target_os = "macos")'.dependencies.core-foundation]
version = "0.10"
[target.'cfg(target_os = "macos")'.dependencies.coreaudio-rs]
version = "0.11"
[target.'cfg(target_os = "macos")'.dependencies.dispatch]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2"
[target.'cfg(target_os = "macos")'.dependencies.objc2]
version = "0.5"
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.2"
features = [
"NSString",
"NSArray",
"NSError",
"dispatch",
"block2",
"NSGeometry",
"NSValue",
"NSUUID",
]
[target.'cfg(target_os = "macos")'.dependencies.screencapturekit-sys]
version = "0.2"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.aec3]
version = "0.1"
[target."cfg(windows)".dependencies.windows]
version = "0.58"
features = [
"Win32_Foundation",
"Win32_Media_Audio",
"Win32_Media_KernelStreaming",
"Win32_Media_Multimedia",
"Win32_System_Com",
"Win32_System_Threading",
"Win32_Security",
"Win32_Devices_FunctionDiscovery",
"Win32_System_Com_StructuredStorage",
"Win32_UI_Shell_PropertiesSystem",
]