Skip to content

Commit 3188f37

Browse files
authored
feat: update MSRV to 1.65 (#6883)
1 parent 6d1fa49 commit 3188f37

File tree

27 files changed

+490
-426
lines changed

27 files changed

+490
-426
lines changed

.changes/msrv-1.65.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
"cli.rs": minor
3+
"tauri-bundler": minor
4+
"tauri": minor
5+
"tauri-build": minor
6+
"tauri-codegen": minor
7+
"tauri-macros": minor
8+
"tauri-utils": minor
9+
"tauri-runtime": minor
10+
"tauri-runtime-wry": minor
11+
---
12+
13+
Bump the MSRV to 1.65.

.github/workflows/test-core.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,35 +34,35 @@ jobs:
3434
- {
3535
target: x86_64-pc-windows-msvc,
3636
os: windows-latest,
37-
toolchain: '1.64.0',
37+
toolchain: '1.65.0',
3838
cross: false,
3939
command: 'test'
4040
}
4141
- {
4242
target: x86_64-unknown-linux-gnu,
4343
os: ubuntu-latest,
44-
toolchain: '1.64.0',
44+
toolchain: '1.65.0',
4545
cross: false,
4646
command: 'test'
4747
}
4848
- {
4949
target: x86_64-apple-darwin,
5050
os: macos-latest,
51-
toolchain: '1.64.0',
51+
toolchain: '1.65.0',
5252
cross: false,
5353
command: 'test'
5454
}
5555
- {
5656
target: aarch64-apple-ios,
5757
os: macos-latest,
58-
toolchain: '1.64.0',
58+
toolchain: '1.65.0',
5959
cross: false,
6060
command: 'build'
6161
}
6262
- {
6363
target: aarch64-linux-android,
6464
os: ubuntu-latest,
65-
toolchain: '1.64.0',
65+
toolchain: '1.65.0',
6666
cross: true,
6767
command: 'build'
6868
}

core/tauri-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-build"
99
description = "build time code to pair with https://crates.io/crates/tauri"
1010
edition = "2021"
11-
rust-version = "1.64"
11+
rust-version = "1.65"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-codegen"
99
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
1010
edition = "2021"
11-
rust-version = "1.64"
11+
rust-version = "1.65"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri"
99
description = "Macros for the tauri crate."
1010
edition = "2021"
11-
rust-version = "1.64"
11+
rust-version = "1.65"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-runtime-wry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri"
99
description = "Wry bindings to the Tauri runtime"
1010
edition = "2021"
11-
rust-version = "1.64"
11+
rust-version = "1.65"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://tauri.app"
88
repository = "https://github.com/tauri-apps/tauri"
99
description = "Runtime for Tauri applications"
1010
edition = "2021"
11-
rust-version = "1.64"
11+
rust-version = "1.65"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

core/tauri-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ homepage = "https://tauri.app"
77
repository = "https://github.com/tauri-apps/tauri"
88
description = "Utilities for Tauri"
99
edition = "2021"
10-
rust-version = "1.64"
10+
rust-version = "1.65"
1111
exclude = [ "CHANGELOG.md", "/target" ]
1212
readme = "README.md"
1313

core/tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ authors = [ "Tauri Programme within The Commons Conservancy" ]
33
categories = [ "gui", "web-programming" ]
44
description = "Make tiny, secure apps for all desktop platforms with Tauri"
55
edition = "2021"
6-
rust-version = "1.64"
6+
rust-version = "1.65"
77
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
88
homepage = "https://tauri.app"
99
license = "Apache-2.0 OR MIT"

0 commit comments

Comments
 (0)