From cf67e5fdfe123c949abf7b72e7baa3e5ea0e256a Mon Sep 17 00:00:00 2001 From: Matthew Richardson Date: Fri, 29 May 2026 12:51:00 +0100 Subject: [PATCH] build: bump Rust version to 1.94.0 --- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- README.md | 2 +- examples/tauri-app/src-tauri/Cargo.toml | 3 ++- rust-toolchain.toml | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b503dc..6a4cf7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Setup Rust toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: '1.89.0' + toolchain: '1.94.0' components: rustfmt, clippy cache: true diff --git a/Cargo.toml b/Cargo.toml index d36d842..0aa471f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Network connectivity monitoring plugin for Tauri applications" license = "MIT" edition = "2024" -rust-version = "1.89" +rust-version = "1.94.0" links = "tauri-plugin-connectivity" exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"] diff --git a/README.md b/README.md index 99f91a5..a950e43 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ cargo test --workspace --lib ## Install -_This plugin requires a Rust version of at least **1.89**_ +_This plugin requires a Rust version of at least **1.94.0**_ ### Rust diff --git a/examples/tauri-app/src-tauri/Cargo.toml b/examples/tauri-app/src-tauri/Cargo.toml index 0eab6f1..c249048 100644 --- a/examples/tauri-app/src-tauri/Cargo.toml +++ b/examples/tauri-app/src-tauri/Cargo.toml @@ -2,7 +2,8 @@ name = "tauri-app" version = "0.1.0" description = "Connectivity example app" -edition = "2021" +edition = "2024" +rust-version = "1.94.0" [lib] name = "tauri_app_lib" diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 4c74074..a49b082 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.89.0" +channel = "1.94.0" components = [ "rustfmt", "clippy"