Skip to content

Commit 14f381a

Browse files
committed
bump msrv
1 parent e414579 commit 14f381a

File tree

35 files changed

+66
-34
lines changed

35 files changed

+66
-34
lines changed

.changes/msrv-1.75.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
"authenticator": patch
3+
"autostart": patch
4+
"barcode-scanner": patch
5+
"biometric": patch
6+
"cli": patch
7+
"clipboard-manager": patch
8+
"deep-link": patch
9+
"dialog": patch
10+
"fs": patch
11+
"global-shortcut": patch
12+
"http": patch
13+
"localhost": patch
14+
"log-plugin": patch
15+
"nfc": patch
16+
"notification": patch
17+
"os": patch
18+
"persisted-scope": patch
19+
"positioner": patch
20+
"process": patch
21+
"shell": patch
22+
"single-instance": patch
23+
"sql": patch
24+
"store": patch
25+
"stronghold": patch
26+
"updater": patch
27+
"upload": patch
28+
"websocket": patch
29+
"window-state": patch
30+
---
31+
32+
Update MSRV to 1.75.

.github/workflows/test-rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
176176
vcpkg install openssl:x64-windows-static-md
177177
178-
- uses: dtolnay/rust-toolchain@1.70.0
178+
- uses: dtolnay/rust-toolchain@1.75.0
179179
with:
180180
targets: ${{ matrix.platform.target }}
181181

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ schemars = "0.8"
2222
edition = "2021"
2323
authors = ["Tauri Programme within The Commons Conservancy"]
2424
license = "Apache-2.0 OR MIT"
25-
rust-version = "1.70"
25+
rust-version = "1.75"
2626

2727
# default to small, optimized release binaries
2828
[profile.release]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
| [websocket](plugins/websocket) | Open a WebSocket connection using a Rust client in JS. |||| ? | ? |
3232
| [window-state](plugins/window-state) | Persist window sizes and positions. |||| ? | ? |
3333

34-
_This repo and all plugins require a Rust version of at least **1.70**_
34+
_This repo and all plugins require a Rust version of at least **1.75**_
3535

3636
## Partners
3737

plugins/authenticator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Use hardware security-keys in your Tauri App.
66

77
## Install
88

9-
_This plugin requires a Rust version of at least **1.70**_
9+
_This plugin requires a Rust version of at least **1.75**_
1010

1111
There are three general methods of installation that we can recommend.
1212

plugins/autostart/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Automatically launch your application at startup. Supports Windows, Mac (via App
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/cli/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Parse arguments from your Command Line Interface.
66

77
## Install
88

9-
_This plugin requires a Rust version of at least **1.70**_
9+
_This plugin requires a Rust version of at least **1.75**_
1010

1111
There are three general methods of installation that we can recommend.
1212

plugins/clipboard-manager/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Read and write to the system clipboard.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/deep-link/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Set your Tauri application as the default handler for an URL.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

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

+1-1
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.70"
9+
rust-version = "1.75"
1010

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

plugins/dialog/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Native system dialogs for opening and saving files along with message dialogs.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/fs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Access the file system.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/global-shortcut/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Register global shortcuts.
66

77
## Install
88

9-
_This plugin requires a Rust version of at least **1.70**_
9+
_This plugin requires a Rust version of at least **1.75**_
1010

1111
There are three general methods of installation that we can recommend.
1212

plugins/http/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Access the HTTP client written in Rust.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/localhost/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
## \[2.0.0-alpha.3]
2121

22-
- [`5c13736`](https://github.com/tauri-apps/plugins-workspace/commit/5c137365c60790e8d4037d449e8237aa3fffdab0)([#673](https://github.com/tauri-apps/plugins-workspace/pull/673)) Update MSRV to 1.70.
22+
- [`5c13736`](https://github.com/tauri-apps/plugins-workspace/commit/5c137365c60790e8d4037d449e8237aa3fffdab0)([#673](https://github.com/tauri-apps/plugins-workspace/pull/673)) Update MSRV to 1.75.
2323

2424
## \[2.0.0-alpha.2]
2525

plugins/localhost/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Expose your apps assets through a localhost server instead of the default custom
66
77
## Install
88

9-
_This plugin requires a Rust version of at least **1.70**_
9+
_This plugin requires a Rust version of at least **1.75**_
1010

1111
There are three general methods of installation that we can recommend.
1212

plugins/log/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Configurable logging for your Tauri app.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/notification/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Send message notifications (brief auto-expiring OS window element) to your user.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/os/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Read information about the operating system.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/persisted-scope/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
## \[2.0.0-alpha.3]
4444

45-
- [`5c13736`](https://github.com/tauri-apps/plugins-workspace/commit/5c137365c60790e8d4037d449e8237aa3fffdab0)([#673](https://github.com/tauri-apps/plugins-workspace/pull/673)) Update MSRV to 1.70.
45+
- [`5c13736`](https://github.com/tauri-apps/plugins-workspace/commit/5c137365c60790e8d4037d449e8237aa3fffdab0)([#673](https://github.com/tauri-apps/plugins-workspace/pull/673)) Update MSRV to 1.75.
4646
- [`5de23e7`](https://github.com/tauri-apps/plugins-workspace/commit/5de23e79f9880921b62e4b7a8819bc0dbc833216)([#649](https://github.com/tauri-apps/plugins-workspace/pull/649)) Update to [email protected].
4747

4848
### Dependencies

plugins/persisted-scope/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Save filesystem and asset scopes and restore them when the app is reopened.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/positioner/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This plugin is a port of [electron-positioner](https://github.com/jenslind/elect
66

77
## Install
88

9-
_This plugin requires a Rust version of at least **1.70**_
9+
_This plugin requires a Rust version of at least **1.75**_
1010

1111
There are three general methods of installation that we can recommend.
1212

plugins/process/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This plugin provides APIs to access the current process. To spawn child processe
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/shell/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Access the system shell. Allows you to spawn child processes and manage files an
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/single-instance/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
## \[2.0.0-alpha.3]
2121

22-
- [`5c13736`](https://github.com/tauri-apps/plugins-workspace/commit/5c137365c60790e8d4037d449e8237aa3fffdab0)([#673](https://github.com/tauri-apps/plugins-workspace/pull/673)) Update MSRV to 1.70.
22+
- [`5c13736`](https://github.com/tauri-apps/plugins-workspace/commit/5c137365c60790e8d4037d449e8237aa3fffdab0)([#673](https://github.com/tauri-apps/plugins-workspace/pull/673)) Update MSRV to 1.75.
2323

2424
## \[2.0.0-alpha.2]
2525

plugins/single-instance/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Ensure a single instance of your tauri app is running.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/single-instance/examples/vanilla/src-tauri/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "A Tauri App"
55
authors = [ "You" ]
66
repository = ""
77
edition = "2021"
8-
rust-version = "1.70"
8+
rust-version = "1.75"
99

1010
[dependencies]
1111
serde_json = { workspace = true }

plugins/sql/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Interface with SQL databases through [sqlx](https://github.com/launchbadge/sqlx)
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/store/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Simple, persistent key-value store.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/stronghold/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Store secrets and keys using the [IOTA Stronghold](https://github.com/iotaledger
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/updater/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ In-app updates for Tauri applications.
66

77
## Install
88

9-
_This plugin requires a Rust version of at least **1.70**_
9+
_This plugin requires a Rust version of at least **1.75**_
1010

1111
There are three general methods of installation that we can recommend.
1212

plugins/upload/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Download files from a remote HTTP server to disk.
55

66
## Install
77

8-
_This plugin requires a Rust version of at least **1.70**_
8+
_This plugin requires a Rust version of at least **1.75**_
99

1010
There are three general methods of installation that we can recommend.
1111

plugins/websocket/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Expose a WebSocket server to your Tauri frontend.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

plugins/window-state/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Save window positions and sizes and restore them when the app is reopened.
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

shared/template/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Install
66

7-
_This plugin requires a Rust version of at least **1.70**_
7+
_This plugin requires a Rust version of at least **1.75**_
88

99
There are three general methods of installation that we can recommend.
1010

0 commit comments

Comments
 (0)