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

bitcoindevkit / bdk / 9519613010

14 Jun 2024 04:52PM CUT coverage: 83.312% (+0.2%) from 83.064%
9519613010

Pull #1473

github

web-flow
Merge feb27df18 into bc420923c
Pull Request #1473: Remove `persist` submodule

58 of 64 new or added lines in 5 files covered. (90.63%)

1 existing line in 1 file now uncovered.

11128 of 13357 relevant lines covered (83.31%)

17626.96 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