Skip to content

Commit

Permalink
feat: update MSRV to 1.65 (#6883)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed May 6, 2023
1 parent 6d1fa49 commit 3188f37
Show file tree
Hide file tree
Showing 27 changed files with 490 additions and 426 deletions.
13 changes: 13 additions & 0 deletions .changes/msrv-1.65.md
@@ -0,0 +1,13 @@
---
"cli.rs": minor
"tauri-bundler": minor
"tauri": minor
"tauri-build": minor
"tauri-codegen": minor
"tauri-macros": minor
"tauri-utils": minor
"tauri-runtime": minor
"tauri-runtime-wry": minor
---

Bump the MSRV to 1.65.
10 changes: 5 additions & 5 deletions .github/workflows/test-core.yml
Expand Up @@ -34,35 +34,35 @@ jobs:
- {
target: x86_64-pc-windows-msvc,
os: windows-latest,
toolchain: '1.64.0',
toolchain: '1.65.0',
cross: false,
command: 'test'
}
- {
target: x86_64-unknown-linux-gnu,
os: ubuntu-latest,
toolchain: '1.64.0',
toolchain: '1.65.0',
cross: false,
command: 'test'
}
- {
target: x86_64-apple-darwin,
os: macos-latest,
toolchain: '1.64.0',
toolchain: '1.65.0',
cross: false,
command: 'test'
}
- {
target: aarch64-apple-ios,
os: macos-latest,
toolchain: '1.64.0',
toolchain: '1.65.0',
cross: false,
command: 'build'
}
- {
target: aarch64-linux-android,
os: ubuntu-latest,
toolchain: '1.64.0',
toolchain: '1.65.0',
cross: true,
command: 'build'
}
Expand Down
2 changes: 1 addition & 1 deletion core/tauri-build/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-build"
description = "build time code to pair with https://crates.io/crates/tauri"
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion core/tauri-codegen/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri/tree/dev/core/tauri-codegen"
description = "code generation meant to be consumed inside of `tauri` through `tauri-build` or `tauri-macros`"
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion core/tauri-macros/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri"
description = "Macros for the tauri crate."
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion core/tauri-runtime-wry/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri"
description = "Wry bindings to the Tauri runtime"
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion core/tauri-runtime/Cargo.toml
Expand Up @@ -8,7 +8,7 @@ homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri"
description = "Runtime for Tauri applications"
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion core/tauri-utils/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ homepage = "https://tauri.app"
repository = "https://github.com/tauri-apps/tauri"
description = "Utilities for Tauri"
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"
exclude = [ "CHANGELOG.md", "/target" ]
readme = "README.md"

Expand Down
2 changes: 1 addition & 1 deletion core/tauri/Cargo.toml
Expand Up @@ -3,7 +3,7 @@ authors = [ "Tauri Programme within The Commons Conservancy" ]
categories = [ "gui", "web-programming" ]
description = "Make tiny, secure apps for all desktop platforms with Tauri"
edition = "2021"
rust-version = "1.64"
rust-version = "1.65"
exclude = [ "/test", "/.scripts", "CHANGELOG.md", "/target" ]
homepage = "https://tauri.app"
license = "Apache-2.0 OR MIT"
Expand Down

0 comments on commit 3188f37

Please sign in to comment.