-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
60 lines (50 loc) · 1.23 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
51
52
53
54
55
56
57
58
59
60
[workspace]
resolver = "2"
default-members = [
"crates/git",
"crates/fs",
"crates/bugsnag",
"crates/test-utils",
]
members = [
"apps/tauri/plugins/plugin-gramax-fs",
"apps/tauri/plugins/plugin-gramax-git",
"apps/tauri/src-tauri",
"apps/browser/wasm",
"apps/next/crates/next-gramax-git",
"rbins/warp-spa",
]
[workspace.package]
version = "0.0.0"
authors = ["ics-it"]
description = "Gramax"
edition = "2021"
[workspace.dependencies]
tauri = { version = "^2.0.0", features = ["macos-private-api", "devtools"] }
tauri-plugin = { version = "^2.0.0", features = ["build"] }
tauri-build = "^2.0.0"
tauri-plugin-deep-link = "^2.0.0"
tauri-plugin-dialog = "^2.0.0"
tauri-plugin-log = "^2.0.0"
tauri-plugin-updater = { version = "^2.0.0", features = ["zip"] }
tauri-plugin-shell = "^2.0.0"
tauri-plugin-window-state = "^2.0.0"
serde = { version = "^1.0", features = ["derive"] }
serde_yml = "^0.0"
serde_json = "^1.0"
reqwest = { version = "^0.12", features = ["blocking", "json"] }
log = "^0.4"
rstest = "^0.23"
[profile.release]
codegen-units = 1
lto = true
incremental = false
opt-level = 2
[profile.development]
inherits = "release"
incremental = false
lto = false
codegen-units = 256
opt-level = 1
debug = "full"
debug-assertions = false