bitcoin: Improve rustdocs on extern crates

Make slight improvement to the extern crates we re-export from
`bitcoin`.
This commit is contained in:
Tobin C. Harding 2024-12-12 12:34:31 +11:00
parent ea6bf12a64
commit a5993426fd
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 4 additions and 2 deletions

View File

@ -61,8 +61,8 @@ extern crate test;
#[macro_use] #[macro_use]
extern crate alloc; extern crate alloc;
#[cfg(feature = "base64")]
/// Encodes and decodes base64 as bytes or utf8. /// Encodes and decodes base64 as bytes or utf8.
#[cfg(feature = "base64")]
pub extern crate base64; pub extern crate base64;
/// Bitcoin base58 encoding and decoding. /// Bitcoin base58 encoding and decoding.
@ -84,7 +84,9 @@ pub extern crate io;
#[cfg(feature = "ordered")] #[cfg(feature = "ordered")]
pub extern crate ordered; pub extern crate ordered;
/// Rust wrapper library for Pieter Wuille's libsecp256k1. Implements ECDSA and BIP 340 signatures /// Re-export the `rust-secp256k1` crate.
///
/// Rust wrapper library for Pieter Wuille's libsecp256k1. Implements ECDSA and BIP-340 signatures
/// for the SECG elliptic curve group secp256k1 and related utilities. /// for the SECG elliptic curve group secp256k1 and related utilities.
pub extern crate secp256k1; pub extern crate secp256k1;