[package]
edition = "2021"
name = "crispasr"
version = "0.8.33"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust wrapper for CrispASR — lightweight on-device speech recognition (Whisper, Qwen3-ASR, FastConformer, and more)."
homepage = "https://github.com/CrispStrobe/CrispASR"
documentation = "https://docs.rs/crispasr"
readme = "README.md"
keywords = [
"asr",
"speech-recognition",
"whisper",
"ggml",
"speech-to-text",
]
categories = [
"multimedia::audio",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/CrispStrobe/CrispASR"
[package.metadata.docs.rs]
all-features = true
[features]
cuda = ["crispasr-sys/cuda"]
default = []
metal = ["crispasr-sys/metal"]
vulkan = ["crispasr-sys/vulkan"]
[lib]
name = "crispasr"
path = "src/lib.rs"
[[example]]
name = "cluster-smoke"
path = "examples/cluster-smoke.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.crispasr-sys]
version = "0.8.33"
[dev-dependencies.hound]
version = "3.5"
[profile.dev]
debug = "line-tables-only"