Skip to content

Commit 0a20b4c

Browse files
committed
Bump MSRV to 1.74.0
1 parent b0433c7 commit 0a20b4c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ jobs:
1111
- run: cargo check --workspace --all-targets --all-features
1212

1313
check_msrv:
14-
name: Check ash MSRV (1.60.0)
14+
name: Check ash MSRV (1.74.0)
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- uses: dtolnay/rust-toolchain@1.60.0
18+
- uses: dtolnay/rust-toolchain@1.74.0
1919
- run: cargo check -p ash -p ash-rewrite --all-features
2020

2121
check_ash_window_msrv:
22-
name: Check ash-window MSRV (1.64.0)
22+
name: Check ash-window MSRV (1.74.0)
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v4
26-
- uses: dtolnay/rust-toolchain@1.64.0
26+
- uses: dtolnay/rust-toolchain@1.74.0
2727
- run: cargo check -p ash-window -p ash-examples --all-features
2828

2929
# TODO: add a similar job for the rewrite once that generates code

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A very lightweight wrapper around Vulkan
88
[![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE-MIT)
99
[![LICENSE](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE-APACHE)
1010
[![Join the chat at https://gitter.im/MaikKlein/ash](https://badges.gitter.im/MaikKlein/ash.svg)](https://gitter.im/MaikKlein/ash?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
11-
[![MSRV](https://img.shields.io/badge/rustc-1.60.0+-ab6000.svg)](https://blog.rust-lang.org/2022/04/07/Rust-1.60.0.html)
11+
[![MSRV](https://img.shields.io/badge/rustc-1.74.0+-ab6000.svg)](https://blog.rust-lang.org/2023/11/16/Rust-1.74.0.html)
1212

1313
## Overview
1414

ash-rewrite/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ categories = [
1818
documentation = "https://docs.rs/ash"
1919
edition = "2021"
2020
# TODO: reevaluate, then update in ci.yml
21-
rust-version = "1.60.0"
21+
rust-version = "1.74.0"
2222

2323
[dependencies]
2424
libloading = { version = "0.8", optional = true }

ash-window/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ categories = [
1616
"rendering::graphics-api"
1717
]
1818
edition = "2021"
19-
rust-version = "1.64.0"
19+
rust-version = "1.74.0"
2020

2121
[dependencies]
2222
ash = { path = "../ash", version = "0.37", default-features = false }

ash/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ categories = [
1919
"rendering::graphics-api"
2020
]
2121
edition = "2021"
22-
rust-version = "1.60.0"
22+
rust-version = "1.74.0"
2323

2424
[dependencies]
2525
libloading = { version = "0.8", optional = true }

0 commit comments

Comments
 (0)