Skip to content

Commit 54942a9

Browse files
committed
ci: bump build_docs rust version to nightly-2024-05-12
1 parent d975a48 commit 54942a9

File tree

7 files changed

+347
-353
lines changed

7 files changed

+347
-353
lines changed

.github/workflows/nightly_docs.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@ jobs:
1010
- name: Checkout sources
1111
uses: actions/checkout@v2
1212
- name: Set default toolchain
13-
run: rustup default nightly-2022-12-14
13+
run: rustup default nightly-2024-05-12
1414
- name: Set profile
1515
run: rustup set profile minimal
1616
- name: Update toolchain
1717
run: rustup update
1818
- name: Rust Cache
1919
uses: Swatinem/[email protected]
20-
- name: Pin dependencies for MSRV
21-
run: cargo update -p home --precise "0.5.5"
2220
- name: Build docs
2321
run: cargo doc --no-deps
2422
env:

crates/bitcoind_rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ bitcoincore-rpc = { version = "0.18" }
1919
bdk_chain = { path = "../chain", version = "0.14", default-features = false }
2020

2121
[dev-dependencies]
22-
bdk_testenv = { path = "../testenv", default_features = false }
22+
bdk_testenv = { path = "../testenv", default-features = false }
2323

2424
[features]
2525
default = ["std"]

crates/chain/src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,6 @@ extern crate alloc;
5858
#[cfg(feature = "serde")]
5959
pub extern crate serde_crate as serde;
6060

61-
#[cfg(feature = "bincode")]
62-
extern crate bincode;
63-
6461
#[cfg(feature = "std")]
6562
#[macro_use]
6663
extern crate std;

crates/esplora/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ bitcoin = { version = "0.31.0", optional = true, default-features = false }
2222
miniscript = { version = "11.0.0", optional = true, default-features = false }
2323

2424
[dev-dependencies]
25-
bdk_testenv = { path = "../testenv", default_features = false }
25+
bdk_testenv = { path = "../testenv", default-features = false }
2626
tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros"] }
2727

2828
[features]

crates/file_store/README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
# BDK File Store
22

3-
This is a simple append-only flat file implementation of
4-
[`PersistBackend`](bdk_persist::PersistBackend).
3+
This is a simple append-only flat file implementation of [`PersistBackend`](bdk_persist::PersistBackend).
54

6-
The main structure is [`Store`](crate::Store), which can be used with [`bdk`]'s
7-
`Wallet` to persist wallet data into a flat file.
5+
The main structure is [`Store`] which works with any [`bdk_chain`] based changesets to persist data into a flat file.
86

9-
[`bdk`]: https://docs.rs/bdk/latest
10-
[`bdk_persist`]: https://docs.rs/bdk_persist/latest
7+
[`bdk_chain`]:https://docs.rs/bdk_chain/latest/bdk_chain/

crates/persist/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# BDK Persist
22

3-
This crate is home to the [`PersistBackend`](crate::PersistBackend) trait which defines the behavior of a database to perform the task of persisting changes made to BDK data structures. The [`Persist`](crate::Persist) type provides a convenient wrapper around a `PersistBackend` that allows staging changes before committing them.
3+
This crate is home to the [`PersistBackend`] trait which defines the behavior of a database to perform the task of persisting changes made to BDK data structures.
4+
5+
The [`Persist`] type provides a convenient wrapper around a [`PersistBackend`] that allows staging changes before committing them.

0 commit comments

Comments
 (0)