Skip to content

Commit

Permalink
set MSRV to 1.70 and use SPDX license format
Browse files Browse the repository at this point in the history
- add CI MSRV check; update actions/checkout to v4.
  • Loading branch information
joseluis committed Feb 4, 2025
1 parent ce657cf commit 18e8d40
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
packages: libx11-dev libxi-dev libgl1-mesa-dev gcc-mingw-w64

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install packages (Linux)
if: runner.os == 'Linux'
run: |
Expand Down Expand Up @@ -70,3 +70,15 @@ jobs:
- name: cargo quad-apk
run: |
cargo quad-apk build
msrv:
name: MSRV Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: '1.70.0'
override: true
- name: Verify MSRV
run: cargo build --all-targets
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ name = "miniquad"
version = "0.4.7"
authors = ["not-fl3 <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
rust-version = "1.70"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/not-fl3/miniquad"
repository = "https://github.com/not-fl3/miniquad"
description = """
Expand Down

0 comments on commit 18e8d40

Please sign in to comment.