diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdc12e0b0..16d348ce0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,17 @@ jobs: command: check args: --workspace --all-targets --all-features + check_msrv: + name: Check MSRV (1.59.0) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: dtolnay/rust-toolchain@1.59.0 + - uses: actions-rs/cargo@v1 + with: + command: check + args: --workspace --all-targets --all-features + generated: name: Generated runs-on: ubuntu-latest diff --git a/ash-window/Cargo.toml b/ash-window/Cargo.toml index e88515ff1..7c4d45ff1 100644 --- a/ash-window/Cargo.toml +++ b/ash-window/Cargo.toml @@ -12,6 +12,7 @@ keywords = ["window", "ash", "graphics"] categories = ["game-engines", "graphics"] exclude = [".github/*"] workspace = ".." +rust-version = "1.59.0" [dependencies] ash = { path = "../ash", version = "0.37", default-features = false } diff --git a/ash/Cargo.toml b/ash/Cargo.toml index 58a80e3a7..b60010263 100644 --- a/ash/Cargo.toml +++ b/ash/Cargo.toml @@ -9,6 +9,7 @@ readme = "../README.md" keywords = ["vulkan", "graphic"] documentation = "https://docs.rs/ash" edition = "2018" +rust-version = "1.59.0" [dependencies] libloading = { version = "0.7", optional = true }