Fix CI with new MSRV (#333)

- Required by wgpu 0.15
This commit is contained in:
Jay Oster 2023-01-27 22:31:52 -08:00 committed by GitHub
parent 332a02f12d
commit b54f707a59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -125,7 +125,7 @@ jobs:
strategy: strategy:
matrix: matrix:
rust: rust:
- 1.59.0 - 1.64.0
steps: steps:
- name: Checkout sources - name: Checkout sources
uses: actions/checkout@v3 uses: actions/checkout@v3

View file

@ -4,7 +4,7 @@ description = "A tiny library providing a GPU-powered pixel frame buffer."
version = "0.11.0" version = "0.11.0"
authors = ["Jay Oster <jay@kodewerx.org>"] authors = ["Jay Oster <jay@kodewerx.org>"]
edition = "2021" edition = "2021"
rust-version = "1.59.0" rust-version = "1.64.0"
repository = "https://github.com/parasyte/pixels" repository = "https://github.com/parasyte/pixels"
readme = "README.md" readme = "README.md"
keywords = ["pixels", "2D", "GPU", "framebuffer"] keywords = ["pixels", "2D", "GPU", "framebuffer"]