From 2575248c1df64d834858dc471d1bfb84530d8cfc Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Wed, 4 Sep 2024 14:17:01 +0000 Subject: [PATCH] Use older `cbindgen` on android to work around MSRV --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7740794..b6957f4c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -661,7 +661,11 @@ jobs: - name: Install cbindgen run: | . $HOME/.cargo/env - cargo install cbindgen + git clone https://github.com/eqrion/cbindgen + cd cbindgen/ + git checkout v0.20.0 + cargo update -p indexmap --precise "1.6.2" --verbose + cargo install --locked --path . - name: Checkout Rust-Lightning and LDK-C-Bindings git run: | git config --global user.email "ldk-ci@example.com" -- 2.39.5