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

bitcoindevkit / bdk / 9713429358

28 Jun 2024 01:15PM UTC coverage: 83.028% (+0.004%) from 83.024%
9713429358

Pull #1493

github

web-flow
Merge eae3ffe96 into 5c7cc3097
Pull Request #1493: [chain] Create module `keychain_txout_index`

15 of 17 new or added lines in 5 files covered. (88.24%)

1 existing line in 1 file now uncovered.

11051 of 13310 relevant lines covered (83.03%)

16853.48 hits per line

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

0.0
/crates/wallet/src/lib.rs
1
#![doc = include_str!("../README.md")]
2
// only enables the `doc_cfg` feature when the `docsrs` configuration attribute is defined
3
#![cfg_attr(docsrs, feature(doc_cfg))]
4
#![cfg_attr(
5
    docsrs,
6
    doc(html_logo_url = "https://github.com/bitcoindevkit/bdk/raw/master/static/bdk.png")
7
)]
8
#![no_std]
9
#![warn(missing_docs)]
10

11
#[cfg(feature = "std")]
12
#[macro_use]
13
extern crate std;
14

15
#[doc(hidden)]
16
#[macro_use]
17
pub extern crate alloc;
18

19
pub extern crate bitcoin;
20
pub extern crate miniscript;
21
extern crate serde;
22
extern crate serde_json;
23

24
#[cfg(feature = "keys-bip39")]
25
extern crate bip39;
26

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 types::*;
36
pub use wallet::signer;
37
pub use wallet::signer::SignOptions;
38
pub use wallet::tx_builder::TxBuilder;
39
pub use wallet::Wallet;
40

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

46
pub use bdk_chain as chain;
47
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