Skip to content

Commit 412f5bb

Browse files
committed
update msrv
1 parent 02c49d8 commit 412f5bb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/linux.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
version:
11-
- 1.51.0 # MSRV
11+
- 1.53.0 # MSRV
1212
- stable
1313
- nightly
1414

@@ -50,7 +50,7 @@ jobs:
5050
key: ${{ matrix.version }}-x86_64-unknown-linux-gnu-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
5151

5252
- name: Cache cargo tarpaulin
53-
if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
53+
if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
5454
uses: actions/cache@v1
5555
with:
5656
path: ~/.cargo/bin
@@ -64,19 +64,19 @@ jobs:
6464
args: --all --all-features --no-fail-fast -- --nocapture
6565

6666
- name: Install tarpaulin
67-
if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
67+
if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
6868
continue-on-error: true
6969
run: |
7070
cargo install cargo-tarpaulin
7171
7272
- name: Generate coverage report
73-
if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
73+
if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
7474
continue-on-error: true
7575
run: |
7676
cargo tarpaulin --out Xml --all --all-features
7777
7878
- name: Upload to Codecov
79-
if: matrix.version == '1.51.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
79+
if: matrix.version == '1.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
8080
continue-on-error: true
8181
uses: codecov/codecov-action@v1
8282
with:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# ntex redis [![build status](https://github.com/ntex-rs/ntex-redis/workflows/CI%20%28Linux%29/badge.svg?branch=master&event=push)](https://github.com/ntex-rs/ntex-redis/actions?query=workflow%3A"CI+(Linux)") [![codecov](https://codecov.io/gh/ntex-rs/ntex-redis/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex-redis) [![crates.io](https://meritbadge.herokuapp.com/ntex-redis)](https://crates.io/crates/ntex-redis)
1+
# ntex redis [![build status](https://github.com/ntex-rs/ntex-redis/workflows/CI%20%28Linux%29/badge.svg?branch=master&event=push)](https://github.com/ntex-rs/ntex-redis/actions?query=workflow%3A"CI+(Linux)") [![codecov](https://codecov.io/gh/ntex-rs/ntex-redis/branch/master/graph/badge.svg)](https://codecov.io/gh/ntex-rs/ntex-redis) [![crates.io](https://img.shields.io/crates/v/ntex-redis)](https://crates.io/crates/ntex-redis)
22

33
redis client for ntex framework
44

55
## Documentation & community resources
66

77
* [Documentation](https://docs.rs/ntex-redis)
8-
* Minimum supported Rust version: 1.46 or later
8+
* Minimum supported Rust version: 1.53 or later
99

1010
## Example
1111

0 commit comments

Comments
 (0)