From 26d993cfea66c28945ea08c949372315d5e3ff40 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Wed, 24 May 2023 07:11:26 -0700 Subject: [PATCH] chore(plugins): update description field (#399) --- plugins/app/Cargo.toml | 1 + plugins/cli/Cargo.toml | 1 + plugins/clipboard/Cargo.toml | 1 + plugins/dialog/Cargo.toml | 1 + plugins/global-shortcut/Cargo.toml | 1 + plugins/http/Cargo.toml | 1 + plugins/notification/Cargo.toml | 1 + plugins/os/Cargo.toml | 1 + plugins/process/Cargo.toml | 1 + plugins/shell/Cargo.toml | 1 + plugins/updater/Cargo.toml | 1 + plugins/websocket/Cargo.toml | 1 + plugins/window/Cargo.toml | 1 + 13 files changed, 13 insertions(+) diff --git a/plugins/app/Cargo.toml b/plugins/app/Cargo.toml index 4984ae28..6ae1ca3f 100644 --- a/plugins/app/Cargo.toml +++ b/plugins/app/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-app" version = "2.0.0-alpha.0" +description = "APIs to read application metadata and change app visibility on macOS." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/cli/Cargo.toml b/plugins/cli/Cargo.toml index ac5035a8..b3a2ca7d 100644 --- a/plugins/cli/Cargo.toml +++ b/plugins/cli/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-cli" version = "2.0.0-alpha.0" +description = "Parse arguments from your Tauri application's command line interface." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/clipboard/Cargo.toml b/plugins/clipboard/Cargo.toml index ab7f5f7a..96522fb8 100644 --- a/plugins/clipboard/Cargo.toml +++ b/plugins/clipboard/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-clipboard" version = "2.0.0-alpha.0" +description = "Read and write to the system clipboard." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/dialog/Cargo.toml b/plugins/dialog/Cargo.toml index 1159ff55..7ca49870 100644 --- a/plugins/dialog/Cargo.toml +++ b/plugins/dialog/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-dialog" version = "2.0.0-alpha.0" +description = "Native system dialogs for opening and saving files along with message dialogs on your Tauri application." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/global-shortcut/Cargo.toml b/plugins/global-shortcut/Cargo.toml index 7ea3ae80..b281d2b0 100644 --- a/plugins/global-shortcut/Cargo.toml +++ b/plugins/global-shortcut/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-global-shortcut" version = "2.0.0-alpha.0" +description = "Register global hotkeys listeners on your Tauri application." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/http/Cargo.toml b/plugins/http/Cargo.toml index 56b78282..f1fb6082 100644 --- a/plugins/http/Cargo.toml +++ b/plugins/http/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-http" version = "2.0.0-alpha.0" +description = "Access an HTTP client written in Rust." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index 1756baf2..a89a731f 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-notification" version = "2.0.0-alpha.0" +description = "Send desktop and mobile notifications on your Tauri application." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/os/Cargo.toml b/plugins/os/Cargo.toml index 8a0d0494..2890d540 100644 --- a/plugins/os/Cargo.toml +++ b/plugins/os/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-os" version = "2.0.0-alpha.0" +description = "Read information about the operating system." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/process/Cargo.toml b/plugins/process/Cargo.toml index 64e5ab9b..f018daa1 100644 --- a/plugins/process/Cargo.toml +++ b/plugins/process/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-process" version = "2.0.0-alpha.0" +description = "Access the current process of your Tauri application." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/shell/Cargo.toml b/plugins/shell/Cargo.toml index 2e4134c6..2502b782 100644 --- a/plugins/shell/Cargo.toml +++ b/plugins/shell/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-shell" version = "2.0.0-alpha.0" +description = "Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index ccd767ac..7342e8d8 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-updater" version = "2.0.0-alpha.0" +description = "In-app updates for Tauri applications." edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/plugins/websocket/Cargo.toml b/plugins/websocket/Cargo.toml index f988f785..a9c00ba1 100644 --- a/plugins/websocket/Cargo.toml +++ b/plugins/websocket/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-websocket" version = "2.0.0-alpha.0" +description = "Expose a WebSocket server to your Tauri frontend." authors = { workspace = true } license = { workspace = true } edition = { workspace = true } diff --git a/plugins/window/Cargo.toml b/plugins/window/Cargo.toml index 140e1895..7e52814d 100644 --- a/plugins/window/Cargo.toml +++ b/plugins/window/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "tauri-plugin-window" version = "2.0.0-alpha.0" +description = "Interact with the Tauri window." edition = { workspace = true } authors = { workspace = true } license = { workspace = true }