Skip to content

Commit

Permalink
Fix MSRV has been 1.70 since at least 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
robsdedude committed Jan 19, 2024
1 parent 9404020 commit 570c053
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
rust-version: ["1.65", "stable"]
rust-version: ["1.70", "stable"]
steps:
- name: Pull Neo4j Docker Image
run: docker pull neo4j:5.6-enterprise
Expand All @@ -25,13 +25,15 @@ jobs:
-e NEO4J_dbms_security_auth__minimum__password__length=1
neo4j:5.6-enterprise &
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.rust-version }}
components: clippy
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
- name: versions
run: rustc --version && cargo --version && cargo clippy --version
- name: cargo check
env:
RUSTFLAGS: -D warnings
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Disclaimer:


## MSRV
Currently, this crate's minimum supported Rust version is `1.65`.
Currently, this crate's minimum supported Rust version is `1.70`.
A bump in MSRV is considered a minor breaking change.


Expand Down

0 comments on commit 570c053

Please sign in to comment.