Skip to content

Commit 0d5781b

Browse files
authored
Merge pull request #232 from dtolnay-contrib/rustversion
Allow compiling on 1.56.0
2 parents 97c4efe + b6aa495 commit 0d5781b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0 OR MIT"
99
description = "A hash table with consistent order and fast iteration."
1010
keywords = ["hashmap", "no_std"]
1111
categories = ["data-structures", "no-std"]
12-
rust-version = "1.56.1"
12+
rust-version = "1.56"
1313

1414
[lib]
1515
bench = false

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![build status](https://github.com/bluss/indexmap/workflows/Continuous%20integration/badge.svg?branch=master)](https://github.com/bluss/indexmap/actions)
44
[![crates.io](https://img.shields.io/crates/v/indexmap.svg)](https://crates.io/crates/indexmap)
55
[![docs](https://docs.rs/indexmap/badge.svg)](https://docs.rs/indexmap)
6-
[![rustc](https://img.shields.io/badge/rust-1.56.1%2B-orange.svg)](https://img.shields.io/badge/rust-1.56.1%2B-orange.svg)
6+
[![rustc](https://img.shields.io/badge/rust-1.56%2B-orange.svg)](https://img.shields.io/badge/rust-1.56%2B-orange.svg)
77

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

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
//!
5454
//! ### Rust Version
5555
//!
56-
//! This version of indexmap requires Rust 1.56.1 or later.
56+
//! This version of indexmap requires Rust 1.56 or later.
5757
//!
5858
//! The indexmap 2.x release series will use a carefully considered version
5959
//! upgrade policy, where in a later 2.x version, we will raise the minimum

0 commit comments

Comments
 (0)