-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 841 Bytes
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
[package]
name = "sensevoice-rs"
version = "0.1.7"
edition = "2021"
description = "A Rust-based, SenseVoiceSmall "
homepage = "https://github.com/darkautism/sensevoice-rs"
license = "MIT"
[dependencies]
kaldi-fbank-rust-kautism = "0.1.0"
rknn-rs = { version = "0.2.1", optional = true }
hound = "3.5.1"
ndarray = { version="0.17.2", features=["rayon"]}
ndarray-npy = "0.10.0"
sentencepiece = "0.13.1"
ndarray-stats = "0.7.0"
rayon = "1.11.0"
hf-hub = "0.5.0"
regex = "1.12.3"
futures = { version = "0.3.32", optional = true }
async-stream = { version = "0.3.6", optional = true }
candle = { package = "candle-core", version = "0.9.2" }
candle-nn = "0.9.2"
[dev-dependencies]
tokio = { version = "1.49.0", features = ["full"] }
futures = "0.3.32"
[features]
default = ["rknpu"]
stream = ["futures", "async-stream"]
rknpu = ["dep:rknn-rs"]