Skip to content

Commit 7cd8cf8

Browse files
fix(deps): update rust crate rust-embed to 8.1 (#542)
* fix(deps): update rust crate rust-embed to 8.1 * bump msrv * simplify test * exclude again * integer * switch? * hmm * 1.61
1 parent 6171792 commit 7cd8cf8

4 files changed

Lines changed: 28 additions & 24 deletions

File tree

.changes/msrv-1.60.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-tauri-app": "patch"
3+
---
4+
5+
Bump MSRV to `1.61`

.github/workflows/cli-test.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,18 @@ concurrency:
2828
cancel-in-progress: true
2929

3030
jobs:
31-
test-without-node-cli:
31+
test:
3232
runs-on: ubuntu-latest
3333
strategy:
3434
matrix:
35-
toolchain: [1.59, stable]
35+
toolchain: [1.61, stable]
3636

3737
steps:
3838
- uses: actions/checkout@v3
3939
- uses: dtolnay/rust-toolchain@master
4040
with:
4141
toolchain: ${{ matrix.toolchain }}
42-
- run: cargo test --exclude create-tauri-app-node --workspace
43-
44-
test-only-node-cli:
45-
runs-on: ubuntu-latest
46-
steps:
47-
- uses: actions/checkout@v3
48-
- uses: dtolnay/rust-toolchain@stable
49-
- run: cargo test --package create-tauri-app-node
42+
- run: cargo test
43+
if: matrix.toolchain != 1.61
44+
- run: cargo test --workspace --exclude create-tauri-app-node
45+
if: matrix.toolchain == 1.61

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/cli/Cargo.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "create-tauri-app"
33
description = "Rapidly scaffold out a new tauri app project."
4-
authors = [ "Tauri Programme within The Commons Conservancy" ]
4+
authors = ["Tauri Programme within The Commons Conservancy"]
55
version = "3.12.0"
66
edition = "2021"
77
license = "Apache-2.0 OR MIT"
88
readme = "README.md"
99
repository = "https://github.com/tauri-apps/create-tauri-app"
10-
keywords = [ "tauri" ]
11-
categories = [ "gui" ]
12-
exclude = [ "/node" ]
13-
rust-version = "1.59"
10+
keywords = ["tauri"]
11+
categories = ["gui"]
12+
exclude = ["/node"]
13+
rust-version = "1.61"
1414

1515
[[bin]]
1616
name = "cargo-create-tauri-app"
@@ -21,4 +21,7 @@ anyhow = "1"
2121
dialoguer = "0.10"
2222
pico-args = "0.5"
2323
ctrlc = "3.3"
24-
rust-embed = { version = "8.0", features = [ "compression", "interpolate-folder-path" ] }
24+
rust-embed = { version = "8.1", features = [
25+
"compression",
26+
"interpolate-folder-path",
27+
] }

0 commit comments

Comments
 (0)