forked from darkautism/sensevoice-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 1.06 KB
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
[package]
name = "sensevoice-rs"
version = "0.1.3"
edition = "2021"
description = "A Rust-based, SenseVoiceSmall "
homepage = "https://github.com/darkautism/sensevoice-rs"
license = "MIT"
[patch.crates-io]
#rknn-rs = { path = "../rknn-rs"}
#voice_activity_detector = { path = "../voice_activity_detector"}
[dependencies]
kaldi-fbank-rust-kautism = "0.1.0"
rknn-rs = "0.1.2"
hound = "3.5.1"
ndarray = { version="0.16.1", features=["rayon"]}
ndarray-npy = "0.9.1"
sentencepiece = "0.12.0"
ndarray-stats = "0.6.0"
rayon = "1.11.0"
hf-hub = "0.4.3"
regex = "1.11.1"
voice_activity_detector = { version = "0.2.1", optional = true }
futures = { version = "0.3.31", optional = true }
async-stream = { version = "0.3.6", optional = true }
[features]
default = []
stream = ["futures", "async-stream", "voice_activity_detector"]
[target.'cfg(target_os = "macos")'.dependencies]
ort = { version = "2.0.0-rc.10", features = ["coreml", "ndarray", "load-dynamic"] }
[target.'cfg(not(target_os = "macos"))'.dependencies]
ort = { version = "2.0.0-rc.10", features = ["ndarray", "load-dynamic"] }