-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
41 lines (36 loc) · 923 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
[workspace]
members = ["sys"]
[package]
name = "sherpa-rs"
version = "0.5.1"
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" }
sherpa-rs-sys = { path = "sys", version = "0.5.1", default-features = false }
tracing = "0.1.40"
[dev-dependencies]
clap = { version = "4.5.8", features = ["derive"] }
[features]
default = ["download-binaries", "tts"]
download-binaries = ["sherpa-rs-sys/download-binaries"]
static = ["sherpa-rs-sys/static"]
sys = []
tts = ["sherpa-rs-sys/tts"]
cuda = ["sherpa-rs-sys/cuda"]
directml = ["sherpa-rs-sys/directml"]
[[example]]
name = "tts"
required-features = ["tts"]