-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (31 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
40 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
38
39
40
[workspace]
members = [
"crates/tauri-plugin-ipc-audio-transcription-ort",
"crates/tauri-plugin-ipc-audio-vad-ort",
"crates/tauri-plugin-mcp",
"crates/tauri-plugin-rdev",
"crates/tauri-plugin-window-pass-through-on-hover",
"crates/tauri-plugin-window-router-link"
]
resolver = "2"
[workspace.package]
version = "0.9.0-alpha.2"
[workspace.dependencies.tauri-plugin-ipc-audio-transcription-ort]
path = "./crates/tauri-plugin-ipc-audio-transcription-ort"
[workspace.dependencies.tauri-plugin-ipc-audio-vad-ort]
path = "./crates/tauri-plugin-ipc-audio-vad-ort"
[workspace.dependencies.tauri-plugin-mcp]
path = "./crates/tauri-plugin-mcp"
[workspace.dependencies.tauri-plugin-rdev]
path = "./crates/tauri-plugin-rdev"
[workspace.dependencies.tauri-plugin-window-pass-through-on-hover]
path = "./crates/tauri-plugin-window-pass-through-on-hover"
[workspace.dependencies.tauri-plugin-window-router-link]
path = "./crates/tauri-plugin-window-router-link"
[profile.dev]
incremental = true
opt-level = 0
debug = true
[profile.dev.package."*"]
opt-level = 1
debug = false