From 2619bd935f26dc63ce55ae3db1ee6c1128ee0c82 Mon Sep 17 00:00:00 2001 From: Rouven Spreckels Date: Tue, 23 Jan 2024 19:06:48 +0100 Subject: [PATCH] Update MSRV. --- .github/workflows/build.yml | 2 +- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cb44a31..ffb9880 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: - name: toolchain uses: actions-rs/toolchain@v1 with: - toolchain: 1.63.0 + toolchain: 1.65.0 profile: minimal components: rustfmt, rust-docs, clippy override: true diff --git a/Cargo.toml b/Cargo.toml index 226a8d6..9c00f9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ndarray-slice" version = "0.2.4" -rust-version = "1.63.0" +rust-version = "1.65.0" edition = "2021" authors = ["Rouven Spreckels "] description = """Fast and robust slice-based algorithms (e.g., sorting, selection, search) diff --git a/README.md b/README.md index 632fd83..21f0cba 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ [Documentation]: https://docs.rs/ndarray-slice/badge.svg [Downloads]: https://img.shields.io/crates/d/ndarray-slice.svg [Version]: https://img.shields.io/crates/v/ndarray-slice.svg -[Rust]: https://img.shields.io/badge/rust-v1.63.0-brightgreen.svg +[Rust]: https://img.shields.io/badge/rust-v1.65.0-brightgreen.svg [License]: https://img.shields.io/badge/License-MIT%20OR%20Apache--2.0-blue.svg Fast and robust slice-based algorithms (e.g., [sorting], [selection], [search]) for