• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bitcoindevkit / bdk / 5398026791

pending completion
5398026791

Pull #1002

github

web-flow
Merge 8272aa35d into 26ade1172
Pull Request #1002: Implement linked-list `LocalChain` and add rpc-chain module/example

681 of 681 new or added lines in 9 files covered. (100.0%)

7903 of 10220 relevant lines covered (77.33%)

5078.37 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

25.0
/crates/bdk/src/lib.rs
1
#![doc = include_str!("../README.md")]
1✔
2
#![no_std]
3
#![warn(missing_docs)]
4

5
#[cfg(feature = "std")]
6
#[macro_use]
7
extern crate std;
8

9
#[doc(hidden)]
10
#[macro_use]
11
pub extern crate alloc;
12

13
pub extern crate bitcoin;
14
#[cfg(feature = "hardware-signer")]
15
pub extern crate hwi;
16
extern crate log;
17
pub extern crate miniscript;
18
extern crate serde;
19
extern crate serde_json;
20

21
#[cfg(feature = "keys-bip39")]
22
extern crate bip39;
23

24
#[allow(unused_imports)]
25
#[macro_use]
26
pub(crate) mod error;
27
pub mod descriptor;
28
pub mod keys;
29
pub mod psbt;
30
pub(crate) mod types;
31
pub mod wallet;
32

33
pub use descriptor::template;
34
pub use descriptor::HdKeyPaths;
35
pub use error::Error;
36
pub use types::*;
37
pub use wallet::signer;
38
pub use wallet::signer::SignOptions;
39
pub use wallet::tx_builder::TxBuilder;
40
pub use wallet::Wallet;
41

42
/// Get the version of BDK at runtime
43
pub fn version() -> &'static str {
×
44
    env!("CARGO_PKG_VERSION", "unknown")
×
45
}
×
46

47
pub use bdk_chain as chain;
48
pub(crate) use bdk_chain::collections;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc