From cd9dff83374c8bdb6228c4d3cc541ed7b1980b45 Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Tue, 25 Jul 2023 17:15:17 +0000 Subject: [PATCH] Pin quote and proc-macro2 in CI to meet MSRV --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d1b9b5..25b7a60 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,6 +40,11 @@ jobs: git checkout 0.0.115-bindings - name: Fix Github Actions to not be broken run: git config --global --add safe.directory /__w/ldk-c-bindings/ldk-c-bindings + - name: Pin proc-macro and quote to meet MSRV + run: | + cd c-bindings-gen + cargo update -p quote --precise "1.0.30" --verbose + cargo update -p proc-macro2 --precise "1.0.65" --verbose - name: Rebuild bindings without std, and check the sample app builds + links run: ./genbindings.sh ./rust-lightning false - name: Rebuild bindings, and check the sample app builds + links -- 2.30.2