From 061ef8e1354f495fe94fb9f3f31a1cc3e9edce91 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Tue, 4 Nov 2025 11:59:41 -0500 Subject: [PATCH 1/2] fix: justfile repo command --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index f03627b..6968bda 100644 --- a/justfile +++ b/justfile @@ -6,7 +6,7 @@ [group("Repo")] [doc("Open repo on GitHub in your default browser.")] repo: - open https://github.com/bitcoindevkit/bdk-ffi + open https://github.com/bitcoindevkit/bdk-python/ [group("Build")] [doc("Remove all caches and previous builds to start from scratch.")] From fae774ba2c20130ad4be3dbf1255dabb4c075979 Mon Sep 17 00:00:00 2001 From: thunderbiscuit Date: Tue, 4 Nov 2025 12:00:09 -0500 Subject: [PATCH 2/2] build: remove explicit set of rust compiler version in build scripts --- scripts/generate-linux.sh | 2 -- scripts/generate-macos-arm64.sh | 1 - scripts/generate-macos-x86_64.sh | 1 - scripts/generate-windows.sh | 1 - 4 files changed, 5 deletions(-) diff --git a/scripts/generate-linux.sh b/scripts/generate-linux.sh index c91ccb1..b70819b 100644 --- a/scripts/generate-linux.sh +++ b/scripts/generate-linux.sh @@ -12,8 +12,6 @@ ${PYBIN}/pip install -r requirements.txt cd ./bdk-ffi/bdk-ffi/ -rustup default 1.84.1 - echo "Generating native binaries..." cargo build --profile release-smaller diff --git a/scripts/generate-macos-arm64.sh b/scripts/generate-macos-arm64.sh index 365a5ab..210a736 100644 --- a/scripts/generate-macos-arm64.sh +++ b/scripts/generate-macos-arm64.sh @@ -12,7 +12,6 @@ pip install -r requirements.txt cd ./bdk-ffi/bdk-ffi/ -rustup default 1.84.1 rustup target add aarch64-apple-darwin echo "Generating native binaries..." diff --git a/scripts/generate-macos-x86_64.sh b/scripts/generate-macos-x86_64.sh index 9b4b747..83d9c21 100644 --- a/scripts/generate-macos-x86_64.sh +++ b/scripts/generate-macos-x86_64.sh @@ -12,7 +12,6 @@ pip install -r requirements.txt cd ./bdk-ffi/bdk-ffi/ -rustup default 1.84.1 rustup target add x86_64-apple-darwin echo "Generating native binaries..." diff --git a/scripts/generate-windows.sh b/scripts/generate-windows.sh index 422f2ab..58d89b6 100644 --- a/scripts/generate-windows.sh +++ b/scripts/generate-windows.sh @@ -12,7 +12,6 @@ pip install -r requirements.txt cd ./bdk-ffi/bdk-ffi/ -rustup default 1.84.1 rustup target add x86_64-pc-windows-msvc echo "Generating native binaries..."