remove tauri-shell entirely

This commit is contained in:
Markus Unterwaditzer
2025-11-17 18:32:54 +01:00
committed by Markus Unterwaditzer
parent 73a5d324c4
commit 3e9af006e1
5 changed files with 0 additions and 15 deletions

View File

@@ -20,6 +20,5 @@ tauri = { version = "2", features = [] }
tauri-plugin-opener = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tauri-plugin-shell = "2"
anyhow = "1.0.100"
installer = { path = "../../installer" }

View File

@@ -1,2 +0,0 @@
*
!.gitignore

View File

@@ -27,7 +27,6 @@ async fn install_rayhunter(app_handle: tauri::AppHandle, args: String) -> Result
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
tauri::Builder::default()
.plugin(tauri_plugin_shell::init())
.plugin(tauri_plugin_opener::init())
.invoke_handler(tauri::generate_handler![install_rayhunter])
.run(tauri::generate_context!())