- VAD stubbed: voice_activity_detector and silero-vad-rust both pin ort rc.10 which conflicts with transcribe-rs requiring ort rc.12. Stubbed until ort ecosystem aligns at 2.0.0 stable. All audio treated as speech (matches v0.2). - Refreshed Cargo.lock to resolve ort rc.12 + whisper-rs 0.16 correctly - clippy clean Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 lines
822 B
TOML
28 lines
822 B
TOML
[package]
|
|
name = "kon-audio"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Audio capture (cpal), VAD, resampling (rubato), file decoding (symphonia), WAV I/O (hound) for Kon"
|
|
|
|
[dependencies]
|
|
kon-core = { path = "../core" }
|
|
|
|
# Microphone capture
|
|
cpal = "0.17"
|
|
|
|
# Voice activity detection — deferred until ort version conflict between
|
|
# VAD crates (ort rc.10) and transcribe-rs (ort rc.12) is resolved upstream.
|
|
# silero-vad-rust = { version = "6", default-features = false }
|
|
|
|
# High-quality resampling (sinc interpolation)
|
|
rubato = "0.15"
|
|
|
|
# WAV file I/O
|
|
hound = "3.5"
|
|
|
|
# Audio file decoding (mp3, aac, flac, wav, ogg, etc.)
|
|
symphonia = { version = "0.5", features = ["mp3", "aac", "flac", "pcm", "vorbis", "wav", "ogg", "isomp4"] }
|
|
|
|
# Async runtime for threading
|
|
tokio = { version = "1", features = ["rt", "sync"] }
|