Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 4 additions & 32 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ jobs:
MATRIX_RUST_VERSION: ${{ matrix.rust.version }}
run: |
if [ $MATRIX_RUST_VERSION = '1.63.0' ]; then
cargo build --workspace --exclude 'example_*' --exclude 'bdk_electrum' ${{ matrix.features }}
cargo test --workspace --exclude 'example_*' --exclude 'bdk_electrum' ${{ matrix.features }}
cargo build --workspace --exclude 'bdk_electrum' ${{ matrix.features }}
cargo test --workspace --exclude 'bdk_electrum' ${{ matrix.features }}
else
cargo build --workspace --exclude 'example_*' ${{ matrix.features }}
cargo test --workspace --exclude 'example_*' ${{ matrix.features }}
cargo build --workspace ${{ matrix.features }}
cargo test --workspace ${{ matrix.features }}
fi

check-no-std:
Expand Down Expand Up @@ -173,31 +173,3 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
name: Clippy Results
args: --all-features --all-targets -- -D warnings

build-examples:
needs: prepare
name: Build & Test Examples
runs-on: ubuntu-latest
strategy:
matrix:
example-dir:
- example_cli
- example_bitcoind_rpc_polling
- example_electrum
- example_esplora
steps:
- name: checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ needs.prepare.outputs.rust_version }}
override: true
profile: minimal
- name: Rust Cache
uses: Swatinem/rust-cache@v2.7.8
- name: Build
working-directory: examples/${{ matrix.example-dir }}
run: cargo build
4 changes: 0 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ members = [
"crates/esplora",
"crates/bitcoind_rpc",
"crates/testenv",
"examples/example_cli",
"examples/example_electrum",
"examples/example_esplora",
"examples/example_bitcoind_rpc_polling",
]

[workspace.package]
Expand Down
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,6 @@ The workspace in this repository contains several crates in the `/crates` direct

The [`bdk_wallet`] repository and crate contains a higher level `Wallet` type that depends on the above lower-level mechanism crates.

Fully working examples of how to use these components are in `/examples`:

- [`example_cli`](examples/example_cli): Library used by the `example_*` crates. Provides utilities for syncing, showing the balance, generating addresses and creating transactions without using the bdk_wallet `Wallet`.
- [`example_electrum`](examples/example_electrum): A command line Bitcoin wallet application built on top of `example_cli` and the `electrum` crate. It shows the power of the bdk tools (`chain` + `file_store` + `electrum`), without depending on the main `bdk_wallet` library.
- [`example_esplora`](examples/example_esplora): A command line Bitcoin wallet application built on top of `example_cli` and the `esplora` crate. It shows the power of the bdk tools (`chain` + `file_store` + `esplora`), without depending on the main `bdk_wallet` library.
- [`example_bitcoind_rpc_polling`](examples/example_bitcoind_rpc_polling): A command line Bitcoin wallet application built on top of `example_cli` and the `bitcoind_rpc` crate. It shows the power of the bdk tools (`chain` + `file_store` + `bitcoind_rpc`), without depending on the main `bdk_wallet` library.

[`rust-miniscript`]: https://github.com/rust-bitcoin/rust-miniscript
[`rust-bitcoin`]: https://github.com/rust-bitcoin/rust-bitcoin
[`esplora-client`]: https://docs.rs/esplora-client/
Expand Down
14 changes: 6 additions & 8 deletions ci/pin-msrv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ set -euo pipefail
# cargo clean
# rustup override set 1.63.0

cargo update -p idna_adapter --precise "1.1.0"
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
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 url --precise "2.5.0"
cargo update -p tokio --precise "1.38.1"
cargo update -p reqwest --precise "0.12.4"
cargo update -p native-tls --precise "0.2.13"
cargo update -p security-framework --precise "2.11.1"
cargo update -p security-framework-sys --precise "2.11.1"
cargo update -p csv --precise "1.3.0"
cargo update -p unicode-width --precise "0.1.13"
Expand All @@ -37,7 +38,7 @@ cargo update -p openssl-sys --precise "0.9.109"
cargo update -p "getrandom@0.4.2" --precise "0.2.17"
cargo update -p serde_json --precise "1.0.138"
cargo update -p ryu --precise "1.0.18"
cargo update -p futures --precise "0.3.30"
cargo update -p futures --precise "0.3.31"
cargo update -p futures-executor --precise "0.3.31"
cargo update -p futures-util --precise "0.3.31"
cargo update -p futures-macro --precise "0.3.31"
Expand All @@ -53,12 +54,9 @@ cargo update -p unicode-ident --precise "1.0.13"
cargo update -p hyper-util --precise "0.1.6"
cargo update -p pin-project --precise "1.1.5"
cargo update -p pin-project-internal --precise "1.1.5"
cargo update -p "rustls@0.23.40" --precise "0.23.26"
cargo update -p "libc" --precise "0.2.183"
cargo update -p "semver" --precise "1.0.27"

# all pinning required due to `clap` usage in `example_cli`
cargo update -p "clap@4.6.1" --precise "4.5.17"
cargo update -p libc --precise "0.2.183"
cargo update -p semver --precise "1.0.27"
cargo update -p proc-macro2 --precise "1.0.92"
cargo update -p quote --precise "1.0.41"
cargo update -p syn --precise "2.0.106"
cargo update -p filetime --precise "0.2.27"
9 changes: 8 additions & 1 deletion crates/bitcoind_rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ Contributors do not need to change this file but do need to add changelog detail
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [bitcoind_rpc-0.22.1]

### Fixed

- `Emitter` producing un-connectable checkpoints when `start_height` is above the agreement point after a reorg #2198

## [bitcoind_rpc-0.22.0]

### Fixed
Expand Down Expand Up @@ -75,4 +81,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[bitcoind_rpc-0.19.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.19.0
[bitcoind_rpc-0.20.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.20.0
[bitcoind_rpc-0.21.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.21.0
[bitcoind_rpc-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.22.0
[bitcoind_rpc-0.22.0]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.22.0
[bitcoind_rpc-0.22.1]: https://github.com/bitcoindevkit/bdk/releases/tag/bitcoind_rpc-0.22.1
2 changes: 1 addition & 1 deletion crates/bitcoind_rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bdk_bitcoind_rpc"
version = "0.22.0"
version = "0.22.1"
edition = "2021"
rust-version = "1.63"
homepage = "https://bitcoindevkit.org"
Expand Down
12 changes: 0 additions & 12 deletions examples/example_bitcoind_rpc_polling/Cargo.toml

This file was deleted.

68 changes: 0 additions & 68 deletions examples/example_bitcoind_rpc_polling/README.md

This file was deleted.

Loading
Loading