Skip to content

Commit 7d9aa39

Browse files
authored
feat: bump MSRV to 1.59 (#5296)
1 parent 1dd722c commit 7d9aa39

File tree

33 files changed

+48
-41
lines changed

33 files changed

+48
-41
lines changed

.changes/msrv-1.59.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+

.github/workflows/artifacts-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Cache core cargo target
7373
uses: actions/cache@v2
7474
env:
75-
cache-name: cargo_core
75+
cache-name: cargo-core
7676
with:
7777
path: target
7878
# Add date to the cache to keep it up to date

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
- name: Cache core cargo target
7575
uses: actions/cache@v2
7676
env:
77-
cache-name: cargo_core
77+
cache-name: cargo-core
7878
with:
7979
path: target
8080
# Add date to the cache to keep it up to date

.github/workflows/covector-version-or-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Cache core cargo target
6161
uses: actions/cache@v2
6262
env:
63-
cache-name: cargo_core
63+
cache-name: cargo-core
6464
with:
6565
path: target
6666
# Add date to the cache to keep it up to date

.github/workflows/lint-fmt-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
- name: Cache core cargo target
9898
uses: actions/cache@v2
9999
env:
100-
cache-name: cargo_core
100+
cache-name: cargo-core
101101
with:
102102
path: target
103103
# Add date to the cache to keep it up to date

.github/workflows/test-core.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ jobs:
3939
- {
4040
target: x86_64-unknown-linux-gnu,
4141
os: ubuntu-latest,
42-
toolchain: '1.57.0'
42+
toolchain: '1.59.0'
4343
}
4444
- {
4545
target: x86_64-apple-darwin,
4646
os: macos-latest,
47-
toolchain: '1.57.0'
47+
toolchain: '1.59.0'
4848
}
4949

5050
steps:
@@ -88,7 +88,7 @@ jobs:
8888
- name: Cache core cargo target
8989
uses: actions/cache@v2
9090
env:
91-
cache-name: cargo_core
91+
cache-name: cargo-core
9292
with:
9393
path: target
9494
# Add date to the cache to keep it up to date
@@ -100,10 +100,6 @@ jobs:
100100
${{ matrix.platform.os }}-${{ matrix.platform.toolchain }}-
101101
${{ matrix.platform.os }}-
102102
103-
- name: pin time
104-
run: |
105-
cargo update -p time --precise 0.3.13
106-
107103
- name: test
108104
run: |
109105
cargo test --target ${{ matrix.platform.target }}

.github/workflows/udeps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
- name: Cache core cargo target
162162
uses: actions/cache@v2
163163
env:
164-
cache-name: cargo_core
164+
cache-name: cargo-core
165165
with:
166166
path: target
167167
# Add date to the cache to keep it up to date

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.57"
11+
rust-version = "1.59"
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.57"
11+
rust-version = "1.59"
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.57"
11+
rust-version = "1.59"
1212
exclude = [ "CHANGELOG.md", "/target" ]
1313
readme = "README.md"
1414

0 commit comments

Comments
 (0)