Skip to content
This repository was archived by the owner on Feb 22, 2024. It is now read-only.

Commit 778aea1

Browse files
committed
Bump Rust edition
Drop support for Rust 1.43.0. This was required when the JSONPath comparison project pinned Rust to that version, but now that project uses the latest stable Rust.
1 parent c0388ea commit 778aea1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: .github/workflows/quickstart.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
toolchain: [ stable, "1.43.0" ]
17+
toolchain: [ stable ]
1818
steps:
1919
- name: Checkout sources
2020
uses: actions/checkout@v2
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
strategy:
4040
matrix:
41-
toolchain: [ stable, "1.43.0" ]
41+
toolchain: [ stable ]
4242
steps:
4343
- name: Checkout sources
4444
uses: actions/checkout@v2

Diff for: Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "jsonpath_reference_implementation"
33
version = "0.0.1"
44
authors = ["Glyn Normington <[email protected]>"]
5-
edition = "2018"
5+
edition = "2021"
66

77
[dependencies]
88
itertools = "0.9.0"

0 commit comments

Comments
 (0)