From 778aea12cef10896f1fc0434a3a25942cbb72026 Mon Sep 17 00:00:00 2001 From: Glyn Normington Date: Mon, 28 Feb 2022 16:16:17 +0000 Subject: [PATCH 1/2] 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. --- .github/workflows/quickstart.yml | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/quickstart.yml b/.github/workflows/quickstart.yml index 450b025..abc335c 100644 --- a/.github/workflows/quickstart.yml +++ b/.github/workflows/quickstart.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - toolchain: [ stable, "1.43.0" ] + toolchain: [ stable ] steps: - name: Checkout sources uses: actions/checkout@v2 @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - toolchain: [ stable, "1.43.0" ] + toolchain: [ stable ] steps: - name: Checkout sources uses: actions/checkout@v2 diff --git a/Cargo.toml b/Cargo.toml index 1dc052b..9c4be77 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "jsonpath_reference_implementation" version = "0.0.1" authors = ["Glyn Normington "] -edition = "2018" +edition = "2021" [dependencies] itertools = "0.9.0" From 63f3db29ae8aef535115127bc1ef67aa6604b0de Mon Sep 17 00:00:00 2001 From: Glyn Normington Date: Tue, 1 Mar 2022 20:29:45 +0000 Subject: [PATCH 2/2] Delete extraneous comment This should have been deleted previously as it pertains to an example application rather than ours. --- .github/workflows/quickstart.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/quickstart.yml b/.github/workflows/quickstart.yml index abc335c..3e5945e 100644 --- a/.github/workflows/quickstart.yml +++ b/.github/workflows/quickstart.yml @@ -1,8 +1,4 @@ # Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md -# -# While our "example" application has the platform-specific code, -# for simplicity we are compiling and testing everything on the Ubuntu environment only. -# For multi-OS testing see the `cross.yml` workflow. on: [push, pull_request]