Skip to content

Commit 33afe8f

Browse files
committed
Auto merge of #431 - Amanieu:msrv-1.64, r=Amanieu
Bump MSRV to 1.64 This is due to the MSRV of the `allocator-api2` dependency.
2 parents 8ae5290 + 5fecac8 commit 33afe8f

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

.github/workflows/rust.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
thumbv6m-none-eabi,
5151
x86_64-pc-windows-gnu,
5252
]
53-
channel: [1.63.0, nightly]
53+
channel: [1.64.0, nightly]
5454
include:
5555
- os: macos-latest
5656
target: x86_64-apple-darwin
@@ -60,13 +60,13 @@ jobs:
6060
channel: nightly
6161
- os: macos-latest
6262
target: x86_64-apple-darwin
63-
channel: 1.63.0
63+
channel: 1.64.0
6464
- os: windows-latest
6565
target: x86_64-pc-windows-msvc
66-
channel: 1.63.0
66+
channel: 1.64.0
6767
- os: ubuntu-latest
6868
target: x86_64-unknown-linux-gnu
69-
channel: 1.63.0
69+
channel: 1.64.0
7070
- os: ubuntu-latest
7171
target: x86_64-unknown-linux-gnu
7272
channel: beta

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.63.0"
13+
rust-version = "1.64.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.63.0%2B-blue.svg?maxAge=3600)](https://github.com/rust-lang/hashbrown)
7+
[![Rust](https://img.shields.io/badge/rust-1.64.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`

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
allocator_api,
2222
slice_ptr_get,
2323
maybe_uninit_array_assume_init,
24-
build_hasher_simple_hash_one,
2524
strict_provenance
2625
)
2726
)]

0 commit comments

Comments
 (0)