Skip to content

Commit e8fdec2

Browse files
authored
Bump the msrv to 1.65.0 to allow for upgrading hashbrown (#113)
Hashbrown has a dependabot alert that requires rustc >= 1.65.0 to resolve; since we're about to make a release anyway, let's just bump our MSRV now.
1 parent 25a84d0 commit e8fdec2

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- stable
2121
- beta
2222
- nightly
23-
- 1.64.0 # MSRV
23+
- 1.65.0 # MSRV
2424
steps:
2525
- uses: actions/checkout@v4
2626
- uses: dtolnay/rust-toolchain@master

.github/workflows/latest-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
CARGO_TERM_COLOR: always
1717
HOST: x86_64-unknown-linux-gnu
1818
RUSTFLAGS: "-D warnings"
19-
MSRV: 1.64.0
19+
MSRV: 1.65.0
2020

2121
jobs:
2222
latest_deps_stable:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"LukeMathWalker <rust@lpalmieri.com>",
77
]
88
edition = "2018"
9-
rust-version = "1.64.0"
9+
rust-version = "1.65.0"
1010

1111
license = "MIT/Apache-2.0"
1212

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ ndarray-stats = "0.6.0"
3535
* **0.7.0**
3636

3737
* Breaking changes
38+
* Minimum supported Rust version: `1.65.0`
3839
* Updated to `ndarray:v0.17.1`
3940

4041
* **0.6.0**

0 commit comments

Comments
 (0)