Skip to content

Commit 1fbe2e6

Browse files
jturner314bluss
authored andcommitted
Update MSRV to 1.57
1 parent ea429b4 commit 1fbe2e6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- stable
3535
- beta
3636
- nightly
37-
- 1.51.0 # MSRV
37+
- 1.57.0 # MSRV
3838

3939
name: tests/${{ matrix.rust }}
4040
steps:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
name = "ndarray"
44
version = "0.15.6"
55
edition = "2018"
6-
rust-version = "1.51"
6+
rust-version = "1.57"
77
authors = [
88
"Ulrik Sverdrup \"bluss\"",
99
"Jim Turner"

scripts/all-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -e
66
FEATURES=$1
77
CHANNEL=$2
88

9-
if [ "$CHANNEL" = "1.51.0" ]; then
9+
if [ "$CHANNEL" = "1.57.0" ]; then
1010
cargo update --package openblas-src --precise 0.10.5
1111
cargo update --package openblas-build --precise 0.10.5
1212
cargo update --package once_cell --precise 1.14.0

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
//! needs matching memory layout to be efficient (with some exceptions).
7272
//! + Efficient floating point matrix multiplication even for very large
7373
//! matrices; can optionally use BLAS to improve it further.
74-
//! - **Requires Rust 1.51 or later**
74+
//! - **Requires Rust 1.57 or later**
7575
//!
7676
//! ## Crate Feature Flags
7777
//!

0 commit comments

Comments
 (0)