From 05b4b9bc745d08c4893cbc28ee7996039dad8329 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Wed, 8 May 2024 19:13:03 -0500 Subject: [PATCH] ci: pin allocator-api2 version to build sqlite with rust 1.63 --- .github/workflows/cont_integration.yml | 1 + README.md | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 1233d7e172..57861e72c0 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -34,6 +34,7 @@ jobs: cargo update -p time --precise "0.3.20" cargo update -p home --precise "0.5.5" cargo update -p proptest --precise "1.2.0" + cargo update -p allocator-api2 --precise "0.2.10" - name: Build run: cargo build ${{ matrix.features }} - name: Test diff --git a/README.md b/README.md index 030ec2a4e2..3675d91d30 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,11 @@ cargo update -p jobserver --precise "0.1.26" cargo update -p home --precise "0.5.5" # proptest 1.4.0 has MSRV 1.65.0 cargo update -p proptest --precise "1.2.0" + +# for bdk_sqlite_store +# allocator-api2 0.2.11 has MSRV 1.64.0 +# see: https://github.com/zakarumych/allocator-api2/pull/7 +cargo update -p allocator-api2 --precise "0.2.10" ``` ## License