Skip to content

Commit 06b80fd

Browse files
committed
Merge branch 'master', commit 'refs/pull/566/head' of github.com:bitcoindevkit/bdk
2 parents ff6db18 + c6eeb7b commit 06b80fd

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/cont_integration.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- async-interface
2929
- use-esplora-reqwest
3030
- sqlite
31+
- sqlite-bundled
3132
steps:
3233
- name: checkout
3334
uses: actions/checkout@v2
@@ -114,7 +115,7 @@ jobs:
114115
override: true
115116
- name: Test
116117
run: cargo test --no-default-features --features ${{ matrix.blockchain.features }} ${{ matrix.blockchain.name }}::bdk_blockchain_tests
117-
118+
118119
check-wasm:
119120
name: Check WASM
120121
runs-on: ubuntu-20.04

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
- Add `sqlite-bundled` feature for deployments that need a bundled version of sqlite, ie. for mobile platforms.
10+
911
## [v0.17.0] - [v0.16.1]
1012

1113
- Removed default verification from `wallet::sync`. sync-time verification is added in `script_sync` and is activated by `verify` feature flag.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ compiler = ["miniscript/compiler"]
5555
verify = ["bitcoinconsensus"]
5656
default = ["key-value-db", "electrum"]
5757
sqlite = ["rusqlite", "ahash"]
58+
sqlite-bundled = ["sqlite", "rusqlite/bundled"]
5859
compact_filters = ["rocksdb", "socks", "lazy_static", "cc"]
5960
key-value-db = ["sled"]
6061
all-keys = ["keys-bip39"]

0 commit comments

Comments
 (0)