diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 404027e3..8589f2eb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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) @@ -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 @@ -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 diff --git a/rend3-routine/Cargo.toml b/rend3-routine/Cargo.toml index 3ae2e689..dd624ad3 100644 --- a/rend3-routine/Cargo.toml +++ b/rend3-routine/Cargo.toml @@ -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" diff --git a/rend3/Cargo.toml b/rend3/Cargo.toml index 9a9377f9..9b63725f 100644 --- a/rend3/Cargo.toml +++ b/rend3/Cargo.toml @@ -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" @@ -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"] }