From 468d4f5daeb8e888d80a82776180e923729a90bb Mon Sep 17 00:00:00 2001 From: Stu Small Date: Mon, 7 Oct 2024 08:16:31 -0600 Subject: [PATCH] fix build --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4c26311..3c5e2e0 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -29,11 +29,11 @@ jobs: profile: minimal # We want to check MSRV support. Our test deps might have a higher MSRV requirement, so we have a separate # step just to build on this older toolchain - toolchain: 1.60 + toolchain: 1.60.0 - name: Build run: cargo build - name: Build no-std - run: cargo build --no-default-feature + run: cargo build --no-default-features test: name: Test runs-on: ubuntu-latest @@ -47,4 +47,4 @@ jobs: - name: Run cargo test run: cargo test - name: Run cargo test for no-std - run: cargo test --no-default-feature \ No newline at end of file + run: cargo test --no-default-features \ No newline at end of file