fix(core): resolve aria2c daemon leak and tokio io blocking

This commit patches a critical resource leak by managing the aria2c child process using an idiomatic RAII Drop guard inside Tauri's managed state. It also purges the legacy `open` crate from Cargo.toml in favor of tauri-plugin-opener, and fully migrates all asynchronous file system operations to tokio::fs to unblock the Tokio async runtime.
This commit is contained in:
NimBold
2026-06-13 22:49:37 +03:30
parent ae19f69e7b
commit 4ec1c4fdf6
3 changed files with 23 additions and 9 deletions
-1
View File
@@ -40,7 +40,6 @@ tower-http = { version = "0.6.11", features = ["cors"] }
sysproxy = "0.3.0"
semver = "1.0.28"
keepawake = "0.6.0"
open = "5.3.5"
system_shutdown = "4.1.0"
tokio-tungstenite = "0.29.0"
futures-util = { version = "0.3.32", features = ["sink"] }