bitcoin: Extern taproot-primitives crate
What changed, and why it matters
This commit adds a single line re-exporting a new Rust crate called taproot_primitives from the main bitcoin crate. It is a routine dependency wiring change with no visible security implications in the diff itself.
No security action required. Review the taproot_primitives crate separately if assessing supply-chain or Taproot-specific risks.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds pub extern crate taproot_primitives; to bitcoin/src/lib.rs, making the taproot_primitives crate publicly available to users of the bitcoin crate. There is no logic change, no unsafe code, no cryptographic change, and no bug fix visible in the patch.
Changed components
bitcoin/src/lib.rsInspect captured patch +1 / −0
diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs
index 75d199ae..60de9bc7 100644
--- a/bitcoin/src/lib.rs
+++ b/bitcoin/src/lib.rs
@@ -73,6 +73,7 @@ pub extern crate hex;
pub extern crate io;
pub extern crate primitives;
pub extern crate secp256k1;
+pub extern crate taproot_primitives;
#[cfg(feature = "serde")]
#[macro_use]
Why this scored 16/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.