Skip to content

Commit

Permalink
Improve
Browse files Browse the repository at this point in the history
  • Loading branch information
cwfitzgerald committed Nov 27, 2023
1 parent cd35d1b commit 033fc1c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
name: ${{ matrix.name }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Rust toolchain
id: setup-rust
Expand All @@ -61,7 +61,7 @@ jobs:

- name: test
run: |
cargo +1.72 nextest run --target ${{ matrix.target }} --profile ci
cargo +1.72 nextest run --target ${{ matrix.target }} --cargo-profile ci
if: matrix.target != 'wasm32-unknown-unknown'

- name: clippy (rend3-gltf featureless)
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
cargo-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Rust toolchain
id: setup-rust
Expand All @@ -103,7 +103,7 @@ jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
with:
log-level: warn
Expand Down
2 changes: 1 addition & 1 deletion rend3-routine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ordered-float = "4"
parking_lot = "0.12"
profiling = {version = "1", default-features = false }
rend3 = { version = "^0.3.0", path = "../rend3" }
rust-embed = { version = "6", features = ["interpolate-folder-path"] }
rust-embed = { version = "8", features = ["interpolate-folder-path"] }
serde = { version = "1", features = ["derive"] }
wgpu = "0.18.0"
wgpu-profiler = "0.15.0"
Expand Down
4 changes: 2 additions & 2 deletions rend3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ parking_lot = "0.12"
profiling = { version = "1", default-features = false }
range-alloc = "0.1.3"
rend3-types = { version = "^0.3.0", path = "../rend3-types" }
rust-embed = { version = "6", features = ["interpolate-folder-path"] }
rust-embed = { version = "8", features = ["interpolate-folder-path"] }
rustc-hash = "1"
serde = { version = "1", features = ["derive"] }
smallvec = "1"
Expand All @@ -65,4 +65,4 @@ pollster = "0.3"

[target.'cfg(target_arch = "wasm32")'.dependencies]
# Needed to embed shaders in the binary on wasm
rust-embed = { version = "6", features = ["interpolate-folder-path", "debug-embed"] }
rust-embed = { version = "8", features = ["interpolate-folder-path", "debug-embed"] }

0 comments on commit 033fc1c

Please sign in to comment.