-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 996 Bytes
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 996 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
33
34
35
36
[workspace]
resolver = "2"
members = ["melops", "melops-asr", "melops-dl", "melops-web"]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Stanley5249 <seer852741@gmail.com>"]
description = "Speech recognition and audio processing workspace"
repository = "https://github.com/Stanley5249/melops"
license = "MIT"
[workspace.dependencies]
melops = { path = "melops" }
melops-asr = { path = "melops-asr" }
melops-dl = { path = "melops-dl" }
melops-web = { path = "melops-web" }
clap = { version = "4.5.53", features = ["derive"] }
dirs = "6.0.0"
eyre = "0.6.12"
futures = "0.3.31"
hf-hub = { version = "0.4.3", default-features = false, features = [
"default-tls",
"ureq",
] }
hound = "3.5.1"
ndarray = "0.17.0"
ort = { version = "2.0.0-rc.11", default-features = false }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
thiserror = "2.0.17"
tokenizers = { version = "0.22.2", default-features = false, features = [
"onig",
] }
tokio = "1.49.0"