Skip to content

Commit 262c97a

Browse files
committed
Raise the MSRV to 1.32 for hashbrown
1 parent 3f955e4 commit 262c97a

File tree

4 files changed

+5
-10
lines changed

4 files changed

+5
-10
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ language: rust
22
sudo: false
33
matrix:
44
include:
5-
# MSRV is lower for non-dev builds
6-
- rust: 1.18.0
7-
env:
8-
- SKIP_TEST=1
95
- rust: 1.32.0
106
- rust: 1.34.2
117
- rust: stable

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ default-features = false
4141
features = ["inline-more", "raw"]
4242

4343
[dev-dependencies]
44-
itertools = "0.8"
44+
itertools = "0.9"
4545
rand = {version = "0.7", features = ["small_rng"] }
4646
quickcheck = { version = "0.9", default-features = false }
4747
fnv = "1.0"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ indexmap
1212
.. |docs| image:: https://docs.rs/indexmap/badge.svg
1313
.. _docs: https://docs.rs/indexmap
1414

15-
.. |rustc| image:: https://img.shields.io/badge/rust-1.18%2B-orange.svg
16-
.. _rustc: https://img.shields.io/badge/rust-1.18%2B-orange.svg
15+
.. |rustc| image:: https://img.shields.io/badge/rust-1.32%2B-orange.svg
16+
.. _rustc: https://img.shields.io/badge/rust-1.32%2B-orange.svg
1717

1818
A pure-Rust hash table which preserves (in a limited sense) insertion order.
1919

src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,8 @@
5353
//!
5454
//! ### Rust Version
5555
//!
56-
//! This version of indexmap requires Rust 1.18 or later, or 1.32+ for
57-
//! development builds, and Rust 1.36+ for using with `alloc` (without `std`),
58-
//! see below.
56+
//! This version of indexmap requires Rust 1.32 or later, or Rust 1.36+ for
57+
//! using with `alloc` (without `std`), see below.
5958
//!
6059
//! The indexmap 1.x release series will use a carefully considered version
6160
//! upgrade policy, where in a later 1.x version, we will raise the minimum

0 commit comments

Comments
 (0)