docs: Add doc comments for external crates
This commit is contained in:
parent
dea628276c
commit
639c548aed
|
@ -56,11 +56,21 @@ extern crate test;
|
|||
extern crate alloc;
|
||||
|
||||
#[cfg(feature = "base64")]
|
||||
/// Encodes and decodes base64 as bytes or utf8.
|
||||
pub extern crate base64;
|
||||
|
||||
/// Encodes and decodes the Bech32 forrmat.
|
||||
pub extern crate bech32;
|
||||
|
||||
#[cfg(feature = "bitcoinconsensus")]
|
||||
/// Bitcoin's libbitcoinconsensus with Rust binding.
|
||||
pub extern crate bitcoinconsensus;
|
||||
|
||||
/// Rust implementation of cryptographic hash function algorithems.
|
||||
pub extern crate hashes;
|
||||
|
||||
/// Rust wrapper library for Pieter Wuille's libsecp256k1. Implements ECDSA and BIP 340 signatures
|
||||
/// for the SECG elliptic curve group secp256k1 and related utilities.
|
||||
pub extern crate secp256k1;
|
||||
|
||||
#[cfg(feature = "serde")]
|
||||
|
|
|
@ -85,8 +85,11 @@ extern crate alloc;
|
|||
extern crate core;
|
||||
#[cfg(feature = "core2")]
|
||||
extern crate core2;
|
||||
|
||||
#[cfg(feature = "serde")]
|
||||
/// A generic serialization/deserialization framework.
|
||||
pub extern crate serde;
|
||||
|
||||
#[cfg(all(test, feature = "serde"))]
|
||||
extern crate serde_test;
|
||||
#[cfg(bench)]
|
||||
|
|
Loading…
Reference in New Issue