Skip to content

Commit

Permalink
fix(deps): update rust crate rust-embed to 8.1 (#542)
Browse files Browse the repository at this point in the history
* fix(deps): update rust crate rust-embed to 8.1

* bump msrv

* simplify test

* exclude again

* integer

* switch?

* hmm

* 1.61
  • Loading branch information
renovate[bot] authored Dec 28, 2023
1 parent 6171792 commit 7cd8cf8
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 24 deletions.
5 changes: 5 additions & 0 deletions .changes/msrv-1.60.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-tauri-app": "patch"
---

Bump MSRV to `1.61`
16 changes: 6 additions & 10 deletions .github/workflows/cli-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,18 @@ concurrency:
cancel-in-progress: true

jobs:
test-without-node-cli:
test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [1.59, stable]
toolchain: [1.61, stable]

steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test --exclude create-tauri-app-node --workspace

test-only-node-cli:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --package create-tauri-app-node
- run: cargo test
if: matrix.toolchain != 1.61
- run: cargo test --workspace --exclude create-tauri-app-node
if: matrix.toolchain == 1.61
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 9 additions & 6 deletions packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "create-tauri-app"
description = "Rapidly scaffold out a new tauri app project."
authors = [ "Tauri Programme within The Commons Conservancy" ]
authors = ["Tauri Programme within The Commons Conservancy"]
version = "3.12.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/tauri-apps/create-tauri-app"
keywords = [ "tauri" ]
categories = [ "gui" ]
exclude = [ "/node" ]
rust-version = "1.59"
keywords = ["tauri"]
categories = ["gui"]
exclude = ["/node"]
rust-version = "1.61"

[[bin]]
name = "cargo-create-tauri-app"
Expand All @@ -21,4 +21,7 @@ anyhow = "1"
dialoguer = "0.10"
pico-args = "0.5"
ctrlc = "3.3"
rust-embed = { version = "8.0", features = [ "compression", "interpolate-folder-path" ] }
rust-embed = { version = "8.1", features = [
"compression",
"interpolate-folder-path",
] }

0 comments on commit 7cd8cf8

Please sign in to comment.