Skip to content

Commit a6cb2ae

Browse files
committed
msrv 1.78
1 parent 27ae67b commit a6cb2ae

File tree

32 files changed

+59
-59
lines changed

32 files changed

+59
-59
lines changed

.github/workflows/test-rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
sudo apt-get update
203203
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev
204204
205-
- uses: dtolnay/rust-toolchain@1.75.0
205+
- uses: dtolnay/rust-toolchain@1.78.0
206206
with:
207207
targets: ${{ matrix.platform.target }}
208208

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ specta = "=2.0.0-rc.20"
2727
edition = "2021"
2828
authors = ["Tauri Programme within The Commons Conservancy"]
2929
license = "Apache-2.0 OR MIT"
30-
rust-version = "1.75"
30+
rust-version = "1.78"
3131
repository = "https://github.com/tauri-apps/plugins-workspace"
3232

3333
# default to small, optimized release binaries

README.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -2,35 +2,35 @@
22

33
| | | Win | Mac | Lin | iOS | And |
44
| ---------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | --- | --- | --- | --- | --- |
5-
| [autostart](plugins/autostart) | Automatically launch your app at system startup. |||| ? | ? |
6-
| [barcode-scanner](plugins/barcode-scanner) | Allows your mobile application to use the camera to scan QR codes, EAN-13 and other kinds of barcodes. | ? | ? | ? |||
7-
| [biometric](plugins/biometric) | Prompt the user for biometric authentication on Android and iOS. | ? | ? | ? |||
8-
| [cli](plugins/cli) | Parse arguments from your Command Line Interface |||| ? | ? |
9-
| [clipboard-manager](plugins/clipboard-manager) | Read and write to the system clipboard. ||||||
10-
| [deep-link](plugins/deep-link) | Set your Tauri application as the default handler for an URL. ||||||
11-
| [dialog](plugins/dialog) | Native system dialogs for opening and saving files along with message dialogs. ||||||
12-
| [fs](plugins/fs) | Access the file system. |||| ? | ? |
13-
| [global-shortcut](plugins/global-shortcut) | Register global shortcuts. |||| ? | ? |
14-
| [http](plugins/http) | Access the HTTP client written in Rust. ||||||
15-
| [localhost](plugins/localhost) | Use a localhost server in production apps. |||| ? | ? |
16-
| [log](plugins/log) | Configurable logging. ||||||
17-
| [nfc](plugins/nfc) | Read and write NFC tags on Android and iOS. | ? | ? | ? |||
18-
| [notification](plugins/notification) | Send message notifications (brief auto-expiring OS window element) to your user. Can also be used with the Notification Web API. ||||||
19-
| [os](plugins/os) | Read information about the operating system. ||||||
20-
| [persisted-scope](plugins/persisted-scope) | Persist runtime scope changes on the filesystem. |||| ? | ? |
21-
| [positioner](plugins/positioner) | Move windows to common locations. |||| ? | ? |
22-
| [process](plugins/process) | This plugin provides APIs to access the current process. To spawn child processes, see the [`shell`](https://github.com/tauri-apps/tauri-plugin-shell) plugin. |||| ? | ? |
23-
| [shell](plugins/shell) | Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application. |||| ? | ? |
24-
| [single-instance](plugins/single-instance) | Ensure a single instance of your tauri app is running. || ? || ? | ? |
25-
| [sql](plugins/sql) | Interface with SQL databases. |||| ? | ? |
26-
| [store](plugins/store) | Persistent key value storage. ||||||
27-
| [stronghold](plugins/stronghold) | Encrypted, secure database. |||| ? | ? |
28-
| [updater](plugins/updater) | In-app updates for Tauri applications. |||| ? | ? |
29-
| [upload](plugins/upload) | Tauri plugin for file uploads through HTTP. |||| ? | ? |
30-
| [websocket](plugins/websocket) | Open a WebSocket connection using a Rust client in JS. |||| ? | ? |
31-
| [window-state](plugins/window-state) | Persist window sizes and positions. |||| ? | ? |
5+
| [autostart](plugins/autostart) | Automatically launch your app at system startup. | | | | ? | ? |
6+
| [barcode-scanner](plugins/barcode-scanner) | Allows your mobile application to use the camera to scan QR codes, EAN-13 and other kinds of barcodes. | ? | ? | ? | | |
7+
| [biometric](plugins/biometric) | Prompt the user for biometric authentication on Android and iOS. | ? | ? | ? | | |
8+
| [cli](plugins/cli) | Parse arguments from your Command Line Interface | | | | ? | ? |
9+
| [clipboard-manager](plugins/clipboard-manager) | Read and write to the system clipboard. | | | | | |
10+
| [deep-link](plugins/deep-link) | Set your Tauri application as the default handler for an URL. | | | | | |
11+
| [dialog](plugins/dialog) | Native system dialogs for opening and saving files along with message dialogs. | | | | | |
12+
| [fs](plugins/fs) | Access the file system. | | | | ? | ? |
13+
| [global-shortcut](plugins/global-shortcut) | Register global shortcuts. | | | | ? | ? |
14+
| [http](plugins/http) | Access the HTTP client written in Rust. | | | | | |
15+
| [localhost](plugins/localhost) | Use a localhost server in production apps. | | | | ? | ? |
16+
| [log](plugins/log) | Configurable logging. | | | | | |
17+
| [nfc](plugins/nfc) | Read and write NFC tags on Android and iOS. | ? | ? | ? | | |
18+
| [notification](plugins/notification) | Send message notifications (brief auto-expiring OS window element) to your user. Can also be used with the Notification Web API. | | | | | |
19+
| [os](plugins/os) | Read information about the operating system. | | | | | |
20+
| [persisted-scope](plugins/persisted-scope) | Persist runtime scope changes on the filesystem. | | | | ? | ? |
21+
| [positioner](plugins/positioner) | Move windows to common locations. | | | | ? | ? |
22+
| [process](plugins/process) | This plugin provides APIs to access the current process. To spawn child processes, see the [`shell`](https://github.com/tauri-apps/tauri-plugin-shell) plugin. | | | | ? | ? |
23+
| [shell](plugins/shell) | Access the system shell. Allows you to spawn child processes and manage files and URLs using their default application. | | | | ? | ? |
24+
| [single-instance](plugins/single-instance) | Ensure a single instance of your tauri app is running. | | ? | | ? | ? |
25+
| [sql](plugins/sql) | Interface with SQL databases. | | | | ? | ? |
26+
| [store](plugins/store) | Persistent key value storage. | | | | | |
27+
| [stronghold](plugins/stronghold) | Encrypted, secure database. | | | | ? | ? |
28+
| [updater](plugins/updater) | In-app updates for Tauri applications. | | | | ? | ? |
29+
| [upload](plugins/upload) | Tauri plugin for file uploads through HTTP. | | | | ? | ? |
30+
| [websocket](plugins/websocket) | Open a WebSocket connection using a Rust client in JS. | | | | ? | ? |
31+
| [window-state](plugins/window-state) | Persist window sizes and positions. | | | | ? | ? |
3232

33-
_This repo and all plugins require a Rust version of at least **1.75**_
33+
_This repo and all plugins require a Rust version of at least **1.78**_
3434

3535
## Contributing
3636

plugins/autostart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Automatically launch your application at startup.
1212

1313
## Install
1414

15-
_This plugin requires a Rust version of at least **1.75**_
15+
_This plugin requires a Rust version of at least **1.78**_
1616

1717
There are three general methods of installation that we can recommend.
1818

plugins/cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Parse arguments from your Command Line Interface.
1212

1313
## Install
1414

15-
_This plugin requires a Rust version of at least **1.75**_
15+
_This plugin requires a Rust version of at least **1.78**_
1616

1717
There are three general methods of installation that we can recommend.
1818

plugins/clipboard-manager/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Read and write to the system clipboard.
1212

1313
## Install
1414

15-
_This plugin requires a Rust version of at least **1.75**_
15+
_This plugin requires a Rust version of at least **1.78**_
1616

1717
There are three general methods of installation that we can recommend.
1818

plugins/deep-link/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Set your Tauri application as the default handler for an URL.
1212

1313
## Install
1414

15-
_This plugin requires a Rust version of at least **1.75**_
15+
_This plugin requires a Rust version of at least **1.78**_
1616

1717
There are three general methods of installation that we can recommend.
1818

plugins/deep-link/examples/app/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["you"]
66
license = ""
77
repository = ""
88
edition = "2021"
9-
rust-version = "1.75"
9+
rust-version = "1.78"
1010

1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

plugins/dialog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Native system dialogs for opening and saving files along with message dialogs.
1212

1313
## Install
1414

15-
_This plugin requires a Rust version of at least **1.75**_
15+
_This plugin requires a Rust version of at least **1.78**_
1616

1717
There are three general methods of installation that we can recommend.
1818

plugins/fs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Access the file system.
1212

1313
## Install
1414

15-
_This plugin requires a Rust version of at least **1.75**_
15+
_This plugin requires a Rust version of at least **1.78**_
1616

1717
There are three general methods of installation that we can recommend.
1818

0 commit comments

Comments
 (0)