Skip to content

Commit 0a8528c

Browse files
committed
Update readme
1 parent 4447f06 commit 0a8528c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/linux.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
version:
11-
- 1.55.0 # MSRV
11+
- 1.65.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.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
53+
if: matrix.version == '1.65.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.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
67+
if: matrix.version == '1.65.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.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
73+
if: matrix.version == '1.65.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.53.0' && (github.ref == 'refs/heads/master' || github.event_name == 'pull_request')
79+
if: matrix.version == '1.65.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ redis client for ntex framework
55
## Documentation & community resources
66

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

1010
## Example
1111

0 commit comments

Comments
 (0)