From 149bfe0f06a17d1ccd1abf1a0190b20020710e04 Mon Sep 17 00:00:00 2001 From: Matthew Richardson Date: Fri, 29 May 2026 13:12:53 +0100 Subject: [PATCH] build: bump Rust version to 1.94.0 --- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- README.md | 2 +- crates/fs-resolver/Cargo.toml | 1 + examples/tauri-app/src-tauri/Cargo.toml | 3 ++- rust-toolchain.toml | 2 +- 6 files changed, 7 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 1c31e9d..77b7386 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "A Tauri plugin for resolving platform-specific file paths" license = "MIT" edition = "2024" -rust-version = "1.89.0" +rust-version = "1.94.0" links = "tauri-plugin-fs-resolver" exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"] diff --git a/README.md b/README.md index 678e46a..837c3e3 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ npm run test ## Install -_This plugin requires a Rust version of at least **1.89.0**_ +_This plugin requires a Rust version of at least **1.94.0**_ ### Rust diff --git a/crates/fs-resolver/Cargo.toml b/crates/fs-resolver/Cargo.toml index c416428..9ea7147 100644 --- a/crates/fs-resolver/Cargo.toml +++ b/crates/fs-resolver/Cargo.toml @@ -2,6 +2,7 @@ name = "fs-resolver" version = "0.1.0" edition = "2024" +rust-version = "1.94.0" [dependencies] serde = { version = "1.0.228", features = ["derive"] } diff --git a/examples/tauri-app/src-tauri/Cargo.toml b/examples/tauri-app/src-tauri/Cargo.toml index d250ac7..f16c326 100644 --- a/examples/tauri-app/src-tauri/Cargo.toml +++ b/examples/tauri-app/src-tauri/Cargo.toml @@ -3,7 +3,8 @@ name = "tauri-app" version = "0.1.0" description = "A Tauri App" authors = ["you"] -edition = "2021" +edition = "2024" +rust-version = "1.94.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 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"