Skip to content

Commit 0c56af4

Browse files
Nikola HristovNikola Hristov
authored andcommitted
1 parent 7a1cb26 commit 0c56af4

6 files changed

Lines changed: 4936 additions & 2819 deletions

File tree

Cargo.toml

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,39 +4,40 @@ path = "Source/Library.rs"
44

55
[build-dependencies]
66
json5 = { version = "0.4.1" }
7-
serde = { version = "1.0.217", features = ["derive"] }
8-
serde_json = { version = "1.0.138" }
9-
tauri-build = { version = "2.0.5", features = ["config-json5"] }
7+
serde = { version = "1.0.219", features = ["derive"] }
8+
serde_json = { version = "1.0.140" }
9+
tauri-build = { version = "2.1.0", features = ["config-json5"] }
1010
toml = { version = "0.8.20" }
1111

1212
[dependencies]
13-
Echo = { version = "0.0.1", path = "../Echo" }
14-
async-trait = "0.1.86"
13+
Echo = { workspace = true }
14+
async-trait = "0.1.88"
1515
futures = { version = "0.3.31" }
1616
portpicker = { version = "0.1.1" }
1717
regex = { version = "1.11.1" }
18-
serde = { version = "1.0.217", features = ["derive"] }
19-
serde_json = { version = "1.0.138" }
20-
tauri = { version = "2.2.5", features = ["tray-icon", "config-json5"] }
21-
tauri-plugin-authenticator = "2.0.0-rc.1"
22-
tauri-plugin-autostart = "2.2.0"
23-
tauri-plugin-cli = "2.2.0"
24-
tauri-plugin-clipboard-manager = "2.2.1"
25-
tauri-plugin-devtools = "2.0.0"
26-
tauri-plugin-dialog = "2.2.0"
27-
tauri-plugin-fs = "2.2.0"
28-
tauri-plugin-global-shortcut = "2.2.0"
29-
tauri-plugin-http = "2.3.0"
30-
tauri-plugin-log = "2.2.1"
31-
tauri-plugin-notification = "2.2.1"
32-
tauri-plugin-os = "2.2.0"
33-
tauri-plugin-process = "2.2.0"
34-
tauri-plugin-single-instance = "2.2.1"
35-
tauri-plugin-store = "2.2.0"
36-
tauri-plugin-upload = "2.2.1"
37-
tauri-plugin-websocket = "2.3.0"
38-
tokio = { version = "1.43.0" }
39-
tokio-tungstenite = "0.26.1"
18+
serde = { version = "1.0.219", features = ["derive"] }
19+
serde_json = { version = "1.0.140" }
20+
21+
tauri = { features = ["tray-icon", "config-json5"], workspace = true }
22+
tauri-plugin-authenticator = { workspace = true }
23+
tauri-plugin-autostart = { workspace = true }
24+
tauri-plugin-cli = { workspace = true }
25+
tauri-plugin-clipboard-manager = { workspace = true }
26+
tauri-plugin-dialog = { workspace = true }
27+
tauri-plugin-fs = { workspace = true }
28+
tauri-plugin-global-shortcut = { workspace = true }
29+
tauri-plugin-http = { workspace = true }
30+
tauri-plugin-log = { workspace = true }
31+
tauri-plugin-notification = { workspace = true }
32+
tauri-plugin-os = { workspace = true }
33+
tauri-plugin-process = { workspace = true }
34+
tauri-plugin-single-instance = { workspace = true }
35+
tauri-plugin-store = { workspace = true }
36+
tauri-plugin-upload = { workspace = true }
37+
tauri-plugin-websocket = { workspace = true }
38+
39+
tokio = { version = "1.44.1" }
40+
tokio-tungstenite = "0.26.2"
4041
unbug = { version = "0.4.0" }
4142

4243
[features]

Source/Fn/Binary.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ pub fn Fn() {
77
.build()
88
.expect("Cannot build.")
99
.block_on(async {
10-
let mut Builder = if cfg!(debug_assertions) {
11-
tauri::Builder::default().plugin(tauri_plugin_devtools::init())
12-
} else {
13-
tauri::Builder::default()
14-
};
10+
let mut Builder = tauri::Builder::default();
1511

1612
#[cfg(any(windows, target_os = "linux"))]
1713
{

gen/schemas/acl-manifests.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)