Skip to content

Commit 76cad6b

Browse files
author
Cole Miller
committed
Increase MSRV to 1.38.0 and document
1 parent 4e11ae3 commit 76cad6b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ matrix:
3333
- name: "x86_64-unknown-linux-gnu (stable)"
3434
rust: stable
3535
env: TARGET=x86_64-unknown-linux-gnu
36-
- name: "x86_64-unknown-linux-gnu (Rust 1.36.0)"
37-
rust: 1.36.0
36+
- name: "x86_64-unknown-linux-gnu (Rust 1.38.0)"
37+
rust: 1.38.0
3838
env: TARGET=x86_64-unknown-linux-gnu
3939
- name: "i686-unknown-linux-gnu"
4040
env: TARGET=i686-unknown-linux-gnu CROSS=1

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1414
- Improved branch prediction hints on stable. (#209)
1515
- Optimized hashing of primitive types with AHash using specialization. (#207)
1616
- Only instantiate `RawTable`'s reserve functions once per key-value. (#204)
17+
- The minimum Rust version has been bumped to 1.38 (due to use of
18+
`pointer::cast`). (#230)
1719

1820
## [v0.9.1] - 2020-09-28
1921

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ hashbrown
44
[![Build Status](https://travis-ci.com/rust-lang/hashbrown.svg?branch=master)](https://travis-ci.com/rust-lang/hashbrown)
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.36.0%2B-blue.svg?maxAge=3600)](https://github.com/rust-lang/hashbrown)
7+
[![Rust](https://img.shields.io/badge/rust-1.38.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)