Skip to content

Commit 8518023

Browse files
committed
chore update msrv to 1.70
1 parent 0ecf5e9 commit 8518023

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "dashmap"
33
version = "6.1.0"
44
authors = ["Joel Wejdenstål <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.65"
6+
rust-version = "1.70"
77
license = "MIT"
88
repository = "https://github.com/xacrimon/dashmap"
99
homepage = "https://github.com/xacrimon/dashmap"

README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ This allows you to put a DashMap in an `Arc<T>` and share it between threads whi
1414
DashMap puts great effort into performance and aims to be as fast as possible.
1515
If you have any suggestions or tips do not hesitate to open an issue or a PR.
1616

17+
The current MSRV is 1.70 and is not changed in patch releases. You can pin a minor version if you want
18+
perfect stability. Though `dashmap` always stays at least 15 full stable releases (or about 9 months) behind the current stable release.
19+
1720
[![version](https://img.shields.io/crates/v/dashmap)](https://crates.io/crates/dashmap)
1821

1922
[![documentation](https://docs.rs/dashmap/badge.svg)](https://docs.rs/dashmap)
2023

2124
[![downloads](https://img.shields.io/crates/d/dashmap)](https://crates.io/crates/dashmap)
2225

23-
[![minimum rustc version](https://img.shields.io/badge/rustc-1.65-orange.svg)](https://crates.io/crates/dashmap)
26+
[![minimum rustc version](https://img.shields.io/badge/rustc-1.70-orange.svg)](https://crates.io/crates/dashmap)
2427

2528
## Cargo features
2629

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.65"
2+
channel = "1.70"
33
components = ["rustfmt", "clippy"]
44
profile = "minimal"

0 commit comments

Comments
 (0)