Skip to content

Commit 63968ab

Browse files
committed
Update MSRV to 1.74.0
1 parent c8f0c2e commit 63968ab

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/rust.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
steps:
8383
- uses: actions/checkout@v3
8484
- uses: dtolnay/rust-toolchain@nightly
85-
- uses: dtolnay/rust-toolchain@1.65.0 # MSRV
85+
- uses: dtolnay/rust-toolchain@1.74.0 # MSRV
8686
- run: cargo +nightly generate-lockfile -Z direct-minimal-versions
8787
- env:
8888
TARGET: x86_64-unknown-linux-gnu

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Relaxed MSRV to 1.74.0. (#609)
13+
1014
## [v0.15.2] - 2024-11-14
1115

1216
### Added

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["hash", "no_std", "hashmap", "swisstable"]
1010
categories = ["data-structures", "no-std"]
1111
exclude = [".github", "/ci/*"]
1212
edition = "2021"
13-
rust-version = "1.65.0"
13+
rust-version = "1.74.0"
1414

1515
[dependencies]
1616
# For the default hasher

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ hashbrown
44
[![Build Status](https://github.com/rust-lang/hashbrown/actions/workflows/rust.yml/badge.svg)](https://github.com/rust-lang/hashbrown/actions)
55
[![Crates.io](https://img.shields.io/crates/v/hashbrown.svg)](https://crates.io/crates/hashbrown)
66
[![Documentation](https://docs.rs/hashbrown/badge.svg)](https://docs.rs/hashbrown)
7-
[![Rust](https://img.shields.io/badge/rust-1.65.0%2B-blue.svg?maxAge=3600)](https://github.com/rust-lang/hashbrown)
7+
[![Rust](https://img.shields.io/badge/rust-1.74.0%2B-blue.svg?maxAge=3600)](https://github.com/rust-lang/hashbrown)
88

99
This crate is a Rust port of Google's high-performance [SwissTable] hash
1010
map, adapted to make it a drop-in replacement for Rust's standard `HashMap`

0 commit comments

Comments
 (0)