bitcoin: Improve rustdocs on extern crates
Make slight improvement to the extern crates we re-export from `bitcoin`.
This commit is contained in:
parent
ea6bf12a64
commit
a5993426fd
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue