[package]
edition = "2021"
rust-version = "1.87"
name = "speech-prep"
version = "0.1.4"
build = false
include = [
"Cargo.toml",
"CHANGELOG.md",
"README.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"src/**",
"examples/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Speech-focused audio preprocessing — VAD, WAV decoding, format detection, noise reduction, chunking"
documentation = "https://docs.rs/speech-prep"
readme = "README.md"
keywords = [
"speech",
"audio",
"vad",
"preprocessing",
"voice",
]
categories = [
"science",
"multimedia::audio",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/dnvt/speech-prep"
[features]
fixtures = [
"dep:glob",
"dep:serde_json",
]
[lib]
name = "speech_prep"
path = "src/lib.rs"
[[example]]
name = "vad_detect"
path = "examples/vad_detect.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "performance_contracts"
path = "tests/performance_contracts.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[dependencies.glob]
version = "0.3"
optional = true
[dependencies.hound]
version = "3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.realfft]
version = "3.5"
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.symphonia]
version = "0.5"
features = [
"aac",
"flac",
"isomp4",
"mkv",
"mp3",
"ogg",
"pcm",
"wav",
]
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.glob]
version = "0.3"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"