From: Matt Corallo Date: Tue, 25 Jul 2023 17:15:17 +0000 (+0000) Subject: Pin quote and proc-macro2 in CI to meet MSRV X-Git-Tag: v0.0.115.3^2~1 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-c-bindings;a=commitdiff_plain;h=cd9dff83374c8bdb6228c4d3cc541ed7b1980b45 Pin quote and proc-macro2 in CI to meet MSRV --- 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