From 80054292fc6f3c3808dc558dc60622b639259470 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Wed, 15 Feb 2023 14:05:49 +0100 Subject: [PATCH] chore: Add MSRV to all readmes --- README.md | 6 +++++- plugins/authenticator/README.md | 2 ++ plugins/autostart/README.md | 2 ++ plugins/fs-extra/README.md | 2 ++ plugins/fs-watch/README.md | 2 ++ plugins/localhost/README.md | 2 ++ plugins/log/README.md | 2 ++ plugins/persisted-scope/README.md | 2 ++ plugins/positioner/README.md | 2 ++ plugins/single-instance/README.md | 2 ++ plugins/sql/README.md | 2 ++ plugins/store/README.md | 2 ++ plugins/stronghold/README.md | 2 ++ plugins/upload/README.md | 2 ++ plugins/websocket/README.md | 2 ++ plugins/window-state/README.md | 2 ++ shared/template/README.md | 2 ++ 17 files changed, 37 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 57583af9..d4b871d1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ + ## Plugins Found Here | | | Win | Mac | Lin | iOS | And | @@ -10,9 +11,12 @@ | [log](plugins/log) | Configurable logging. | ✅ | ✅ | ✅ | ✅ | ✅ | | [persisted-scope](plugins/persisted-scope) | Persist runtime scope changes on the filesystem. | ✅ | ✅ | ✅ | ? | ? | | [positioner](plugins/positioner) | Move windows to common locations. | ✅ | ✅ | ✅ | ? | ? | +| [single-instance](plugins/single-instance) | Ensure a single instance of your tauri app is running. | ✅ | ✅ | ✅ | ? | ? | | [sql](plugins/sql) | Interface with SQL databases. | ✅ | ✅ | ✅ | ? | ? | | [store](plugins/store) | Persistent key value storage. | ✅ | ✅ | ✅ | ? | ? | | [stronghold](plugins/stronghold) | Encrypted, secure database. | ✅ | ✅ | ✅ | ? | ? | | [upload](plugins/upload) | Tauri plugin for file uploads through HTTP. | ✅ | ✅ | ✅ | ? | ? | -| [websocket](plugins/websocket) | | ✅ | ✅ | ✅ | ? | ? | +| [websocket](plugins/websocket) | Open a WebSocket connection using a Rust backend | ✅ | ✅ | ✅ | ? | ? | | [window-state](plugins/window-state) | Persist window sizes and positions. | ✅ | ✅ | ✅ | ? | ? | + +_This repo and all plugins require a minimum Rust version of **1.64**_ diff --git a/plugins/authenticator/README.md b/plugins/authenticator/README.md index 884d81b9..850c0457 100644 --- a/plugins/authenticator/README.md +++ b/plugins/authenticator/README.md @@ -4,6 +4,8 @@ Use hardware security-keys in your Tauri App. ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/autostart/README.md b/plugins/autostart/README.md index 78859423..b89df520 100644 --- a/plugins/autostart/README.md +++ b/plugins/autostart/README.md @@ -4,6 +4,8 @@ Automatically launch your application at startup. Supports Windows, Mac (via App ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/fs-extra/README.md b/plugins/fs-extra/README.md index 6ea6ea1c..effeda7b 100644 --- a/plugins/fs-extra/README.md +++ b/plugins/fs-extra/README.md @@ -4,6 +4,8 @@ Additional file system methods not included in the core API. ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/fs-watch/README.md b/plugins/fs-watch/README.md index 26ee5bfc..5b2d7876 100644 --- a/plugins/fs-watch/README.md +++ b/plugins/fs-watch/README.md @@ -4,6 +4,8 @@ Watch files and directories for changes using [notify](https://github.com/notify ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/localhost/README.md b/plugins/localhost/README.md index 23b07577..80300b66 100644 --- a/plugins/localhost/README.md +++ b/plugins/localhost/README.md @@ -6,6 +6,8 @@ Expose your apps assets through a localhost server instead of the default custom ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/log/README.md b/plugins/log/README.md index f49c2c7b..47092ea2 100644 --- a/plugins/log/README.md +++ b/plugins/log/README.md @@ -4,6 +4,8 @@ Configurable logging for your Tauri app. ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/persisted-scope/README.md b/plugins/persisted-scope/README.md index 43dd5909..4707ee00 100644 --- a/plugins/persisted-scope/README.md +++ b/plugins/persisted-scope/README.md @@ -4,6 +4,8 @@ Save filesystem and asset scopes and restore them when the app is reopened. ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/positioner/README.md b/plugins/positioner/README.md index 54332ddc..d957b5c4 100644 --- a/plugins/positioner/README.md +++ b/plugins/positioner/README.md @@ -6,6 +6,8 @@ This plugin is a port of [electron-positioner](https://github.com/jenslind/elect ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/single-instance/README.md b/plugins/single-instance/README.md index 75d985e9..13de3972 100644 --- a/plugins/single-instance/README.md +++ b/plugins/single-instance/README.md @@ -4,6 +4,8 @@ Ensure a single instance of your tauri app is running. ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/sql/README.md b/plugins/sql/README.md index 6b034f7c..5a142cf8 100644 --- a/plugins/sql/README.md +++ b/plugins/sql/README.md @@ -4,6 +4,8 @@ Interface with SQL databases through [sqlx](https://github.com/launchbadge/sqlx) ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/store/README.md b/plugins/store/README.md index 0e1eb29a..1de280c4 100644 --- a/plugins/store/README.md +++ b/plugins/store/README.md @@ -4,6 +4,8 @@ Simple, persistent key-value store. ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/stronghold/README.md b/plugins/stronghold/README.md index bc79b46c..14bfe2a1 100644 --- a/plugins/stronghold/README.md +++ b/plugins/stronghold/README.md @@ -4,6 +4,8 @@ Store secrets and keys using the [IOTA Stronghold](https://github.com/iotaledger ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/upload/README.md b/plugins/upload/README.md index 1168a362..b4677323 100644 --- a/plugins/upload/README.md +++ b/plugins/upload/README.md @@ -4,6 +4,8 @@ Upload files from disk to a remote server over HTTP. ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/websocket/README.md b/plugins/websocket/README.md index 954a650f..a0cfe7d2 100644 --- a/plugins/websocket/README.md +++ b/plugins/websocket/README.md @@ -4,6 +4,8 @@ ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/plugins/window-state/README.md b/plugins/window-state/README.md index de86ae9e..46b9d819 100644 --- a/plugins/window-state/README.md +++ b/plugins/window-state/README.md @@ -4,6 +4,8 @@ Save window positions and sizes and restore them when the app is reopened. ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) diff --git a/shared/template/README.md b/shared/template/README.md index 0a059e4f..d7dc0b65 100644 --- a/shared/template/README.md +++ b/shared/template/README.md @@ -4,6 +4,8 @@ ## Install +_This plugin requires a minimum Rust version of **1.64**_ + There are three general methods of installation that we can recommend. 1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked)