feat(process): add plugin (#348)

This commit is contained in:
Lucas Fernandes Nogueira
2023-05-09 08:00:44 -07:00
committed by GitHub
parent 61e7d6ede5
commit 012d32e8ed
19 changed files with 440 additions and 2 deletions
+8
View File
@@ -159,6 +159,7 @@ dependencies = [
"tauri-plugin-log",
"tauri-plugin-notification",
"tauri-plugin-os",
"tauri-plugin-process",
"tauri-plugin-shell",
"tiny_http",
"window-shadows",
@@ -3710,6 +3711,13 @@ dependencies = [
"thiserror",
]
[[package]]
name = "tauri-plugin-process"
version = "0.0.0"
dependencies = [
"tauri",
]
[[package]]
name = "tauri-plugin-shell"
version = "0.0.0"
+1
View File
@@ -25,6 +25,7 @@ tauri-plugin-dialog = { path = "../../../plugins/dialog" }
tauri-plugin-http = { path = "../../../plugins/http", features = [ "http-multipart" ] }
tauri-plugin-notification = { path = "../../../plugins/notification", features = [ "windows7-compat" ] }
tauri-plugin-os = { path = "../../../plugins/os" }
tauri-plugin-process = { path = "../../../plugins/process" }
tauri-plugin-shell = { path = "../../../plugins/shell" }
[patch.crates-io]
+1
View File
@@ -38,6 +38,7 @@ pub fn run() {
.plugin(tauri_plugin_http::init())
.plugin(tauri_plugin_notification::init())
.plugin(tauri_plugin_os::init())
.plugin(tauri_plugin_process::init())
.plugin(tauri_plugin_shell::init())
.setup(move |app| {
#[cfg(desktop)]