forked from thewh1teagle/sherpa-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 834 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "sherpa-rs"
version = "0.1.8-beta.0"
edition = "2021"
authors = ["thewh1teagle"]
license = "MIT"
repository = "https://github.com/thewh1teagle/sherpa-rs"
description = "Rust bindings to https://github.com/k2-fsa/sherpa-onnx"
readme = "README.md"
keywords = [
"audio",
"embeddings",
"speech-recognition",
"sherpa",
"diarization",
]
[dependencies]
eyre = "0.6.12"
hound = { version = "3.5.1" }
log = "0.4.22"
num-traits = "0.2.19"
sherpa-rs-sys = { path = "sys", version = "0.1.8-beta.0" }
[dev-dependencies]
clap = { version = "4.5.8", features = ["derive"] }
cpal = "0.15.3"
anyhow = "*"
[workspace]
members = ["sys"]
[features]
default = []
tts = ["sherpa-rs-sys/tts"]
cuda = ["sherpa-rs-sys/cuda"]
directml = ["sherpa-rs-sys/directml"]
[[example]]
name = "tts"
required-features = ["tts"]