Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion examples/tauri-app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.89.0"
channel = "1.94.0"
components = [
"rustfmt",
"clippy"
Expand Down
Loading