-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (42 loc) · 1.12 KB
/
Cargo.toml
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
[workspace]
members = ["./src-tauri/core", "./src-tauri/mangadex"]
default-members = ["./src-tauri/core"]
resolver = "2"
[workspace.dependencies]
serde_json = "1.0"
tauri-build = { version = "2" }
tauri = "2"
tokio = "1"
anyhow = "1"
uuid = "1"
serde = "1.0"
thiserror = "1"
reqwest = "0.12"
bytes = "1"
async-graphql = "7"
time = "0.3"
mizuki = "1"
mizuki-build = "1"
url = "2.5"
actix = "0.13"
tower = "0.5"
[workspace.dependencies.tauri-plugin-notification]
git = "https://github.com/tauri-apps/plugins-workspace"
branch = "v2"
[workspace.dependencies.tauri-plugin-deep-link]
git = "https://github.com/tauri-apps/plugins-workspace"
branch = "v2"
[workspace.dependencies.tauri-plugin-opener]
git = "https://github.com/tauri-apps/plugins-workspace"
branch = "v2"
[workspace.dependencies.tauri-plugin-clipboard-manager]
git = "https://github.com/tauri-apps/plugins-workspace"
branch = "v2"
[workspace.dependencies.tauri-plugin-store]
git = "https://github.com/tauri-apps/plugins-workspace"
branch = "v2"
[workspace.dependencies.mangadex]
path = "./src-tauri/mangadex"
package = "tauri-plugin-speu-mangadex"
[profile.dev]
opt-level = 3