-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 907 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 907 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
37
38
39
40
41
42
43
44
45
46
[workspace]
resolver = "2"
members = [
"mofa-studio-shell",
"mofa-widgets",
"mofa-dora-bridge",
"mofa-ui",
"apps/*",
]
exclude = ["apps/mofa-asr"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
[workspace.dependencies]
# Makepad UI framework
makepad-widgets = { git = "https://github.com/wyeworks/makepad", rev = "53b2e5c84" }
# Audio
cpal = "0.15"
# Async runtime
tokio = { version = "1", features = ["full", "sync"] }
# Utilities
parking_lot = "0.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.8"
log = "0.4"
env_logger = "0.11"
dirs = "5.0"
sysinfo = "0.32"
crossbeam-channel = "0.5"
once_cell = "1.19"
thiserror = "1.0"
anyhow = "1.0"
tracing = "0.1"
uuid = { version = "1.0", features = ["v4"] }
rand = "0.8"
# Dora - robotics framework for voice chat architecture
dora-node-api = "0.4.1"