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

Bump edition #30

Merged
merged 2 commits into from
Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/quickstart.yml
Original file line number Diff line number Diff line change
@@ -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]

Expand All @@ -14,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [ stable, "1.43.0" ]
toolchain: [ stable ]
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand All @@ -38,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [ stable, "1.43.0" ]
toolchain: [ stable ]
steps:
- name: Checkout sources
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "jsonpath_reference_implementation"
version = "0.0.1"
authors = ["Glyn Normington <glyn.normington@gmail.com>"]
edition = "2018"
edition = "2021"

[dependencies]
itertools = "0.9.0"
Expand Down