Skip to content

Commit

Permalink
Fix build using the nightly toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
jinleili committed Mar 21, 2024
1 parent a09af48 commit 9ef75e4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
CARGO_INCREMENTAL: false
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
MSRV: 1.71
MSRV: 1.76

jobs:
check-msrv:
Expand Down Expand Up @@ -45,4 +45,4 @@ jobs:
shell: bash
run: |
set -e
cargo clippy --target ${{ matrix.target }}
cargo clippy --target ${{ matrix.target }}
6 changes: 3 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ log = "0.4"
noise = { version = "0.8", default-features = false }
pollster = "0.3"
rand = "0.7.2"
wgpu = "0.19"
wgpu = "0.19.3"
# wgpu = { git = "https://github.com/gfx-rs/wgpu", rev = "445fa6019b47079c9d336881dbee1c3be3ed4c38" }
# wgpu = { git = "https://github.com/jinleili/wgpu", branch="visionOS" }
async-executor = "1.6"
Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# wgpu in App

![Minimum Rust Version](https://img.shields.io/badge/min%20rust-1.71-green.svg)
![Minimum Rust Version](https://img.shields.io/badge/min%20rust-1.76-green.svg)
[![Build Status](https://github.com/jinleili/wgpu-in-app/workflows/CI/badge.svg?branch=master)](https://github.com/jinleili/wgpu-in-app/actions)
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jinleili/wgpu-in-app/blob/master/LICENSE.MIT)

Expand Down
4 changes: 2 additions & 2 deletions app-surface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name = "app-surface"
authors = ["jinleili"]
description = "Integrate wgpu into your existing iOS and Android apps."
edition = "2021"
version = "0.4.0"
rust-version = "1.71"
version = "0.4.1"
rust-version = "1.76"
repository = "https://github.com/jinleili/wgpu-in-app"
keywords = ["android", "SurfaceView", "ios", "app", "wgpu"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion wgpu-in-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "wgpu-in-app"
authors = ["jinleili"]
version = "0.3.0"
edition = "2021"
rust-version = "1.71"
rust-version = "1.76"

[lib]
crate-type = ["rlib", "staticlib", "cdylib"]
Expand Down

0 comments on commit 9ef75e4

Please sign in to comment.