Skip to content

Commit 1409a98

Browse files
committedDec 12, 2021
raise toolchain and msrv
1 parent ddc15d5 commit 1409a98

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed
 

‎.github/workflows/ci.yml

-5
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ jobs:
77
runs-on: ubuntu-18.04
88
steps:
99
- uses: actions/checkout@v2
10-
- name: setup
11-
run: |
12-
rustup install stable-2020-06-18-x86_64-unknown-linux-gnu
13-
rustup component add rustfmt --toolchain stable-2020-06-18-x86_64-unknown-linux-gnu
14-
rustup component add clippy --toolchain stable-2020-06-18-x86_64-unknown-linux-gnu
1510
- name: style
1611
run: cargo fmt -- --check
1712
- name: clippy

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ If you have any suggestions or tips do not hesitate to open an issue or a PR.
2020

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

23-
[![minimum rustc version](https://img.shields.io/badge/rustc-1.44.1-orange.svg)](https://crates.io/crates/dashmap)
23+
[![minimum rustc version](https://img.shields.io/badge/rustc-1.49-orange.svg)](https://crates.io/crates/dashmap)
2424

2525
## Cargo features
2626

‎rust-toolchain

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
stable-2020-06-18
1+
[toolchain]
2+
channel = "stable-2020-12-31"
3+
components = [ "rustfmt", "clippy" ]
4+
profile = "minimal"

0 commit comments

Comments
 (0)
Please sign in to comment.