-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (62 loc) · 1.98 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (62 loc) · 1.98 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[workspace]
resolver = "2"
members = [
"crates/voxflow-core",
"crates/voxflow-audio",
"crates/voxflow-vad",
"crates/voxflow-whisper",
"crates/voxflow-provider",
"crates/voxflow-router",
"crates/voxflow-insert",
"crates/voxflow-history",
"crates/voxflow-cost",
"crates/voxflow-config",
"crates/voxflow-secrets",
"crates/voxflow-platform",
"crates/voxflowctl",
"src-tauri",
]
default-members = ["src-tauri"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["MaskedSyntax"]
[workspace.dependencies]
anyhow = "1"
arboard = "3"
async-trait = "0.1"
base64 = "0.22"
bytes = "1"
chrono = { version = "0.4", features = ["serde"] }
cpal = "0.15"
directories = "5"
enigo = "0.2"
hound = "3"
keyring = { version = "3", features = ["sync-secret-service", "crypto-rust"] }
parking_lot = "0.12"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4", "serde"] }
webrtc-vad = "0.4"
voxflow-audio = { path = "crates/voxflow-audio" }
voxflow-config = { path = "crates/voxflow-config" }
voxflow-core = { path = "crates/voxflow-core" }
voxflow-cost = { path = "crates/voxflow-cost" }
voxflow-history = { path = "crates/voxflow-history" }
voxflow-insert = { path = "crates/voxflow-insert" }
voxflow-provider = { path = "crates/voxflow-provider" }
voxflow-router = { path = "crates/voxflow-router" }
voxflow-secrets = { path = "crates/voxflow-secrets" }
voxflow-vad = { path = "crates/voxflow-vad" }
voxflow-whisper = { path = "crates/voxflow-whisper" }
voxflow-platform = { path = "crates/voxflow-platform" }
[profile.release]
lto = true
codegen-units = 1