From 2e090c90cd28a5d4aea4018b5f7741916545f77a Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Wed, 15 Feb 2023 14:32:17 +0100 Subject: [PATCH] chore: Add MSRV to all readmes (#255) * chore: Add MSRV to all readmes * fix single-instance support matrix * wording * wording * typo --- README.md | 5 ++++- 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, 36 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 57583af9..cc7541ae 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,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 client in JS. | ✅ | ✅ | ✅ | ? | ? | | [window-state](plugins/window-state) | Persist window sizes and positions. | ✅ | ✅ | ✅ | ? | ? | + +_This repo and all plugins require a Rust version of at least **1.64**_ diff --git a/plugins/authenticator/README.md b/plugins/authenticator/README.md index 884d81b9..0e700f6a 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 Rust version of at least **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..419907c3 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 Rust version of at least **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..98d311fe 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 Rust version of at least **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..8162d1fe 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 Rust version of at least **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..50665f66 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 Rust version of at least **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..fca43611 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 Rust version of at least **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..26888b59 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 Rust version of at least **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..ebac8500 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 Rust version of at least **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..1efbba90 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 Rust version of at least **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..7ec807b1 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 Rust version of at least **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..3c3f7c7e 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 Rust version of at least **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..2b5b2790 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 Rust version of at least **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..cd24a9d5 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 Rust version of at least **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..96c5c324 100644 --- a/plugins/websocket/README.md +++ b/plugins/websocket/README.md @@ -4,6 +4,8 @@ ## Install +_This plugin requires a Rust version of at least **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..303d54a5 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 Rust version of at least **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..ed5545a2 100644 --- a/shared/template/README.md +++ b/shared/template/README.md @@ -4,6 +4,8 @@ ## Install +_This plugin requires a Rust version of at least **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)