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

bitcoindevkit / bdk / 11582766320

29 Oct 2024 09:28PM UTC coverage: 82.61%. Remained the same
11582766320

push

github

notmandatory
Merge bitcoindevkit/bdk#1657: chore(deps): bump tibdex/github-app-token from 1 to 2

96c65761e ci: fix dependabot clippy_check error (Steve Myers)
80b4ecac4 chore(deps): bump tibdex/github-app-token from 1 to 2 (dependabot[bot])

Pull request description:

  Bumps [tibdex/github-app-token](https://github.com/tibdex/github-app-token) from 1 to 2.
  <details>
  <summary>Release notes</summary>
  <p><em>Sourced from <a href="https://github.com/tibdex/github-app-token/releases">tibdex/github-app-token's releases</a>.</em></p>
  <blockquote>
  <h2>v2.0.0</h2>
  <ul>
  <li><strong>BREAKING</strong>: replaces the <code>installation_id</code> and <code>repository</code> inputs with <code>installation_retrieval_mode</code> and <code>installation_retrieval_payload</code> to also support organization and user installation.</li>
  <li>switches to <code>node20</code>.</li>
  <li>adds a <code>repositories</code> input to scope the created token to a subset of repositories.</li>
  <li>revokes the created token at the end of the job with a <a href="https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runspost"><code>post</code> script</a>.</li>
  </ul>
  <h2>v1.9.0</h2>
  <p>No release notes provided.</p>
  <h2>v1.8.2</h2>
  <p>No release notes provided.</p>
  <h2>v1.8.1</h2>
  <p>No release notes provided.</p>
  <h2>v1.8.0</h2>
  <p>No release notes provided.</p>
  <h2>v1.7.0</h2>
  <p>No release notes provided.</p>
  <h2>v1.6.0</h2>
  <p>No release notes provided.</p>
  <h2>v1.5.2</h2>
  <p>No release notes provided.</p>
  <h2>v1.5.1</h2>
  <p>No release notes provided.</p>
  <h2>v1.5.0</h2>
  <p>No release notes provided.</p>
  <h2>v1.4.0</h2>
  <p>No release notes provided.</p>
  <h2>v1.3.0</h2>
  <p>No release notes provided.</p>
  <h2>v1.2.0</h2>
  <p>No release notes provided.</p>
  <h2>v1.1.1</h2>
  <p>No release notes provided.</p>
  <h2>v1.1.0</h2>
  <p>No releas... (continued)

11301 of 13680 relevant lines covered (82.61%)

14271.04 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
pub extern crate bdk_chain as chain;
19
#[cfg(feature = "file_store")]
20
pub extern crate bdk_file_store as file_store;
21
#[cfg(feature = "keys-bip39")]
22
pub extern crate bip39;
23
pub extern crate bitcoin;
24
pub extern crate miniscript;
25
pub extern crate serde;
26
pub extern crate serde_json;
27

28
pub mod descriptor;
29
pub mod keys;
30
pub mod psbt;
31
mod types;
32
mod wallet;
33

34
pub(crate) use bdk_chain::collections;
35
#[cfg(feature = "rusqlite")]
36
pub use bdk_chain::rusqlite;
37
#[cfg(feature = "rusqlite")]
38
pub use bdk_chain::rusqlite_impl;
39
pub use descriptor::template;
40
pub use descriptor::HdKeyPaths;
41
pub use signer;
42
pub use signer::SignOptions;
43
pub use tx_builder::*;
44
pub use types::*;
45
pub use wallet::*;
46

47
/// Get the version of [`bdk_wallet`](crate) at runtime.
48
pub fn version() -> &'static str {
×
49
    env!("CARGO_PKG_VERSION", "unknown")
×
50
}
×
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