From 0d55e6acbaefb2d49c670ff36c848906b68a8e8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 May 2022 18:47:06 +0000 Subject: [PATCH 1/2] Update peg requirement from ~0.7 to ~0.8 Updates the requirements on [peg](https://github.com/kevinmehall/rust-peg) to permit the latest version. - [Release notes](https://github.com/kevinmehall/rust-peg/releases) - [Commits](https://github.com/kevinmehall/rust-peg/compare/0.7.0...0.8.0) --- updated-dependencies: - dependency-name: peg dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- edn/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edn/Cargo.toml b/edn/Cargo.toml index 9ac64a04..27a9065a 100644 --- a/edn/Cargo.toml +++ b/edn/Cargo.toml @@ -18,7 +18,7 @@ pretty = "~0.10" uuid = { version = "~1.0", features = ["v4", "serde"] } serde = { version = "~1.0", optional = true } serde_derive = { version = "~1.0", optional = true } -peg = "~0.7" +peg = "~0.8" bytes = "1.0.1" hex = "0.4.3" -- 2.43.4 From 986b439fb90f392cbced4ef7949a644662dc3126 Mon Sep 17 00:00:00 2001 From: Greg Burd Date: Wed, 4 May 2022 17:09:30 -0400 Subject: [PATCH 2/2] ignore warnings from clippy --- .github/workflows/clippy_check.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/clippy_check.yml b/.github/workflows/clippy_check.yml index 791d8be1..e13d8e45 100644 --- a/.github/workflows/clippy_check.yml +++ b/.github/workflows/clippy_check.yml @@ -12,4 +12,5 @@ jobs: override: true - uses: actions-rs/clippy-check@v1 with: + args: --all-targets --all-features -- -D warnings token: ${{ secrets.GITHUB_TOKEN }} -- 2.43.4