diff --git a/.changes/msrv-1.75.md b/.changes/msrv-1.75.md new file mode 100644 index 00000000..c694ae87 --- /dev/null +++ b/.changes/msrv-1.75.md @@ -0,0 +1,32 @@ +--- +"authenticator": patch +"autostart": patch +"barcode-scanner": patch +"biometric": patch +"cli": patch +"clipboard-manager": patch +"deep-link": patch +"dialog": patch +"fs": patch +"global-shortcut": patch +"http": patch +"localhost": patch +"log-plugin": patch +"nfc": patch +"notification": patch +"os": patch +"persisted-scope": patch +"positioner": patch +"process": patch +"shell": patch +"single-instance": patch +"sql": patch +"store": patch +"stronghold": patch +"updater": patch +"upload": patch +"websocket": patch +"window-state": patch +--- + +Update MSRV to 1.75. diff --git a/.github/workflows/test-rust.yml b/.github/workflows/test-rust.yml index 805ac4f8..ead80be3 100644 --- a/.github/workflows/test-rust.yml +++ b/.github/workflows/test-rust.yml @@ -175,7 +175,7 @@ jobs: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append vcpkg install openssl:x64-windows-static-md - - uses: dtolnay/rust-toolchain@1.70.0 + - uses: dtolnay/rust-toolchain@1.75.0 with: targets: ${{ matrix.platform.target }} diff --git a/Cargo.toml b/Cargo.toml index 5698c090..cdc5865e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ schemars = "0.8" edition = "2021" authors = ["Tauri Programme within The Commons Conservancy"] license = "Apache-2.0 OR MIT" -rust-version = "1.70" +rust-version = "1.75" # default to small, optimized release binaries [profile.release] diff --git a/README.md b/README.md index 51184474..444c4e99 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ | [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.70**_ +_This repo and all plugins require a Rust version of at least **1.75**_ ## Partners diff --git a/plugins/authenticator/README.md b/plugins/authenticator/README.md index b56f30e8..13c75a5f 100644 --- a/plugins/authenticator/README.md +++ b/plugins/authenticator/README.md @@ -6,7 +6,7 @@ Use hardware security-keys in your Tauri App. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/autostart/README.md b/plugins/autostart/README.md index 2e81dfc2..01f385ab 100644 --- a/plugins/autostart/README.md +++ b/plugins/autostart/README.md @@ -4,7 +4,7 @@ Automatically launch your application at startup. Supports Windows, Mac (via App ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/cli/README.md b/plugins/cli/README.md index bc2bbabd..c58a6f31 100644 --- a/plugins/cli/README.md +++ b/plugins/cli/README.md @@ -6,7 +6,7 @@ Parse arguments from your Command Line Interface. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/clipboard-manager/README.md b/plugins/clipboard-manager/README.md index 70ad717f..02b26b3c 100644 --- a/plugins/clipboard-manager/README.md +++ b/plugins/clipboard-manager/README.md @@ -4,7 +4,7 @@ Read and write to the system clipboard. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/deep-link/README.md b/plugins/deep-link/README.md index abe89cf0..d014040c 100644 --- a/plugins/deep-link/README.md +++ b/plugins/deep-link/README.md @@ -4,7 +4,7 @@ Set your Tauri application as the default handler for an URL. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/deep-link/examples/app/src-tauri/Cargo.toml b/plugins/deep-link/examples/app/src-tauri/Cargo.toml index 7cbf3fd5..9d1eb501 100644 --- a/plugins/deep-link/examples/app/src-tauri/Cargo.toml +++ b/plugins/deep-link/examples/app/src-tauri/Cargo.toml @@ -6,7 +6,7 @@ authors = ["you"] license = "" repository = "" edition = "2021" -rust-version = "1.70" +rust-version = "1.75" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/plugins/dialog/README.md b/plugins/dialog/README.md index 602efc34..0fbd529c 100644 --- a/plugins/dialog/README.md +++ b/plugins/dialog/README.md @@ -4,7 +4,7 @@ Native system dialogs for opening and saving files along with message dialogs. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/fs/README.md b/plugins/fs/README.md index 72df1941..239ff04c 100644 --- a/plugins/fs/README.md +++ b/plugins/fs/README.md @@ -4,7 +4,7 @@ Access the file system. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/global-shortcut/README.md b/plugins/global-shortcut/README.md index cf10f98c..4bdb24f4 100644 --- a/plugins/global-shortcut/README.md +++ b/plugins/global-shortcut/README.md @@ -6,7 +6,7 @@ Register global shortcuts. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/http/README.md b/plugins/http/README.md index 44477c6e..d1f9bfa1 100644 --- a/plugins/http/README.md +++ b/plugins/http/README.md @@ -4,7 +4,7 @@ Access the HTTP client written in Rust. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/localhost/CHANGELOG.md b/plugins/localhost/CHANGELOG.md index a454622f..150c6a82 100644 --- a/plugins/localhost/CHANGELOG.md +++ b/plugins/localhost/CHANGELOG.md @@ -19,7 +19,7 @@ ## \[2.0.0-alpha.3] -- [`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. +- [`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. ## \[2.0.0-alpha.2] diff --git a/plugins/localhost/README.md b/plugins/localhost/README.md index 35df725e..0b21087e 100644 --- a/plugins/localhost/README.md +++ b/plugins/localhost/README.md @@ -6,7 +6,7 @@ Expose your apps assets through a localhost server instead of the default custom ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/log/README.md b/plugins/log/README.md index a2542cd5..56c4beeb 100644 --- a/plugins/log/README.md +++ b/plugins/log/README.md @@ -4,7 +4,7 @@ Configurable logging for your Tauri app. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/notification/README.md b/plugins/notification/README.md index 1163f0c2..8d1f9637 100644 --- a/plugins/notification/README.md +++ b/plugins/notification/README.md @@ -4,7 +4,7 @@ Send message notifications (brief auto-expiring OS window element) to your user. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/os/README.md b/plugins/os/README.md index 6a4cfe21..6e518911 100644 --- a/plugins/os/README.md +++ b/plugins/os/README.md @@ -4,7 +4,7 @@ Read information about the operating system. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/persisted-scope/CHANGELOG.md b/plugins/persisted-scope/CHANGELOG.md index 4fb175eb..6f254439 100644 --- a/plugins/persisted-scope/CHANGELOG.md +++ b/plugins/persisted-scope/CHANGELOG.md @@ -42,7 +42,7 @@ ## \[2.0.0-alpha.3] -- [`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. +- [`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. - [`5de23e7`](https://github.com/tauri-apps/plugins-workspace/commit/5de23e79f9880921b62e4b7a8819bc0dbc833216)([#649](https://github.com/tauri-apps/plugins-workspace/pull/649)) Update to tauri@alpha.15. ### Dependencies diff --git a/plugins/persisted-scope/README.md b/plugins/persisted-scope/README.md index 6d6afb11..9621b0f5 100644 --- a/plugins/persisted-scope/README.md +++ b/plugins/persisted-scope/README.md @@ -4,7 +4,7 @@ Save filesystem and asset scopes and restore them when the app is reopened. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/positioner/README.md b/plugins/positioner/README.md index e6b2e2cd..4dd31413 100644 --- a/plugins/positioner/README.md +++ b/plugins/positioner/README.md @@ -6,7 +6,7 @@ This plugin is a port of [electron-positioner](https://github.com/jenslind/elect ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/process/README.md b/plugins/process/README.md index b389b38b..515539d3 100644 --- a/plugins/process/README.md +++ b/plugins/process/README.md @@ -4,7 +4,7 @@ This plugin provides APIs to access the current process. To spawn child processe ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/shell/README.md b/plugins/shell/README.md index 8cb80724..d97899e2 100644 --- a/plugins/shell/README.md +++ b/plugins/shell/README.md @@ -4,7 +4,7 @@ Access the system shell. Allows you to spawn child processes and manage files an ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/single-instance/CHANGELOG.md b/plugins/single-instance/CHANGELOG.md index a454622f..150c6a82 100644 --- a/plugins/single-instance/CHANGELOG.md +++ b/plugins/single-instance/CHANGELOG.md @@ -19,7 +19,7 @@ ## \[2.0.0-alpha.3] -- [`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. +- [`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. ## \[2.0.0-alpha.2] diff --git a/plugins/single-instance/README.md b/plugins/single-instance/README.md index a1a554c1..b72b7612 100644 --- a/plugins/single-instance/README.md +++ b/plugins/single-instance/README.md @@ -4,7 +4,7 @@ Ensure a single instance of your tauri app is running. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/single-instance/examples/vanilla/src-tauri/Cargo.toml b/plugins/single-instance/examples/vanilla/src-tauri/Cargo.toml index 71bc0d1f..13da3100 100644 --- a/plugins/single-instance/examples/vanilla/src-tauri/Cargo.toml +++ b/plugins/single-instance/examples/vanilla/src-tauri/Cargo.toml @@ -5,7 +5,7 @@ description = "A Tauri App" authors = [ "You" ] repository = "" edition = "2021" -rust-version = "1.70" +rust-version = "1.75" [dependencies] serde_json = { workspace = true } diff --git a/plugins/sql/README.md b/plugins/sql/README.md index ff62d4f8..770db6b1 100644 --- a/plugins/sql/README.md +++ b/plugins/sql/README.md @@ -4,7 +4,7 @@ Interface with SQL databases through [sqlx](https://github.com/launchbadge/sqlx) ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/store/README.md b/plugins/store/README.md index ae4aa71f..ad746854 100644 --- a/plugins/store/README.md +++ b/plugins/store/README.md @@ -4,7 +4,7 @@ Simple, persistent key-value store. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/stronghold/README.md b/plugins/stronghold/README.md index b342c56c..0b293a2d 100644 --- a/plugins/stronghold/README.md +++ b/plugins/stronghold/README.md @@ -4,7 +4,7 @@ Store secrets and keys using the [IOTA Stronghold](https://github.com/iotaledger ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/updater/README.md b/plugins/updater/README.md index 28e0271a..71e3b282 100644 --- a/plugins/updater/README.md +++ b/plugins/updater/README.md @@ -6,7 +6,7 @@ In-app updates for Tauri applications. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/upload/README.md b/plugins/upload/README.md index 17868bf5..d0c43078 100644 --- a/plugins/upload/README.md +++ b/plugins/upload/README.md @@ -5,7 +5,7 @@ Download files from a remote HTTP server to disk. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/websocket/README.md b/plugins/websocket/README.md index f897a489..650ffcf1 100644 --- a/plugins/websocket/README.md +++ b/plugins/websocket/README.md @@ -4,7 +4,7 @@ Expose a WebSocket server to your Tauri frontend. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/plugins/window-state/README.md b/plugins/window-state/README.md index b8a42864..c71b4df3 100644 --- a/plugins/window-state/README.md +++ b/plugins/window-state/README.md @@ -4,7 +4,7 @@ Save window positions and sizes and restore them when the app is reopened. ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend. diff --git a/shared/template/README.md b/shared/template/README.md index cc955ab7..920f5f8c 100644 --- a/shared/template/README.md +++ b/shared/template/README.md @@ -4,7 +4,7 @@ ## Install -_This plugin requires a Rust version of at least **1.70**_ +_This plugin requires a Rust version of at least **1.75**_ There are three general methods of installation that we can recommend.