From 3c49edec565c4f6b1e6966857cf31932c0601ee5 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Thu, 10 Apr 2025 23:01:18 +0200 Subject: [PATCH] ci and fmt --- .github/workflows/ci.yml | 2 +- Cargo.toml | 1 + src/lib.rs | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dec7e0b..44ed7b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@1.81.0 + - uses: dtolnay/rust-toolchain@1.85.1 - run: cargo check --release cross-check: diff --git a/Cargo.toml b/Cargo.toml index dcc976f..4712202 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,6 +2,7 @@ name = "raw-slice" version = "0.1.0" edition = "2024" +rust-version = "1.85.1" authors = ["Robin Mueller "] description = "Generic low-level raw slice types" homepage = "https://egit.irs.uni-stuttgart.de/rust/raw-slice" diff --git a/src/lib.rs b/src/lib.rs index a26c356..2b74f8d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -372,5 +372,4 @@ mod tests { assert!(unsafe { slice.get() }.is_none()); assert!(unsafe { slice.get_mut() }.is_none()); } - }