// SPDX-License-Identifier: CC0-1.0 //! # Rust Bitcoin Library //! //! This is a library that supports the Bitcoin network protocol and associated //! primitives. It is designed for Rust programs built to work with the Bitcoin //! network. //! //! Except for its dependency on libsecp256k1 (and optionally libbitcoinconsensus), //! this library is written entirely in Rust. It illustrates the benefits of //! strong type safety, including ownership and lifetime, for financial and/or cryptographic software. //! //! See README.md for detailed documentation about development and supported //! environments. //! //! ## Available feature flags //! //! * `std` - the usual dependency on `std` (default). //! * `secp-recovery` - enables calculating public key from a signature and message. //! * `base64` - (dependency), enables encoding of PSBTs and message signatures. //! * `rand` - (dependency), makes it more convenient to generate random values. //! * `serde` - (dependency), implements `serde`-based serialization and //! deserialization. //! * `secp-lowmemory` - optimizations for low-memory devices. //! * `no-std` - enables additional features required for this crate to be usable //! without std. Does **not** disable `std`. //! * `bitcoinconsensus-std` - enables `std` in `bitcoinconsensus` and communicates it //! to this crate so it knows how to implement //! `std::error::Error`. At this time there's a hack to //! achieve the same without this feature but it could //! happen the implementations diverge one day. #![cfg_attr(all(not(feature = "std"), not(test)), no_std)] // Experimental features we need. #![cfg_attr(bench, feature(test))] #![cfg_attr(docsrs, feature(doc_auto_cfg))] // Coding conventions #![warn(missing_docs)] // Instead of littering the codebase for non-fuzzing code just globally allow. #![cfg_attr(fuzzing, allow(dead_code, unused_imports))] // Exclude clippy lints we don't think are valuable #![allow(clippy::needless_question_mark)] // https://github.com/rust-bitcoin/rust-bitcoin/pull/2134 #[cfg(not(any(feature = "std", feature = "no-std")))] compile_error!("at least one of the `std` or `no-std` features must be enabled"); // Disable 16-bit support at least for now as we can't guarantee it yet. #[cfg(target_pointer_width = "16")] compile_error!( "rust-bitcoin currently only supports architectures with pointers wider than 16 bits, let us know if you want 16-bit support. Note that we do NOT guarantee that we will implement it!" ); #[cfg(bench)] extern crate test; #[macro_use] 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; /// Re-export the `hex-conservative` crate. pub extern crate hex; /// 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")] #[macro_use] extern crate actual_serde as serde; #[cfg(test)] #[macro_use] mod test_macros; mod internal_macros; mod parse; #[cfg(feature = "serde")] mod serde_utils; #[macro_use] pub mod p2p; pub mod address; pub mod amount; pub mod base58; pub mod bip152; pub mod bip158; pub mod bip32; pub mod blockdata; pub mod consensus; // Private until we either make this a crate or flatten it - still to be decided. pub(crate) mod crypto; pub mod error; pub mod hash_types; pub mod merkle_tree; pub mod network; pub mod policy; pub mod pow; pub mod psbt; pub mod sign_message; pub mod string; pub mod taproot; use bitcoin_io::io; #[rustfmt::skip] // Keep public re-exports separate. #[doc(inline)] pub use crate::{ address::{Address, AddressType}, amount::{Amount, Denomination, SignedAmount}, bip32::XKeyIdentifier, blockdata::block::{self, Block}, blockdata::constants, blockdata::fee_rate::FeeRate, blockdata::locktime::{self, absolute, relative}, blockdata::opcodes::{self, Opcode}, blockdata::script::witness_program::{self, WitnessProgram}, blockdata::script::witness_version::{self, WitnessVersion}, blockdata::script::{self, Script, ScriptBuf, ScriptHash, WScriptHash}, blockdata::transaction::{self, OutPoint, Sequence, Transaction, TxIn, TxOut}, blockdata::weight::Weight, blockdata::witness::{self, Witness}, consensus::encode::VarInt, crypto::ecdsa, crypto::key::{self, PrivateKey, PubkeyHash, PublicKey, WPubkeyHash, XOnlyPublicKey}, crypto::sighash::{self, LegacySighash, SegwitV0Sighash, TapSighash, TapSighashTag}, hash_types::{BlockHash, FilterHash, FilterHeader, TxMerkleNode, Txid, WitnessCommitment, Wtxid}, merkle_tree::MerkleBlock, network::Network, pow::{CompactTarget, Target, Work}, psbt::Psbt, sighash::{EcdsaSighashType, TapSighashType}, taproot::{TapBranchTag, TapLeafHash, TapLeafTag, TapNodeHash, TapTweakHash, TapTweakTag}, }; #[cfg(not(feature = "std"))] mod io_extras { use crate::io; /// A writer which will move data into the void. pub struct Sink { _priv: (), } /// Creates an instance of a writer which will successfully consume all data. pub const fn sink() -> Sink { Sink { _priv: () } } impl io::Write for Sink { #[inline] fn write(&mut self, buf: &[u8]) -> io::Result { Ok(buf.len()) } #[inline] fn flush(&mut self) -> io::Result<()> { Ok(()) } } } #[rustfmt::skip] mod prelude { #[cfg(all(not(feature = "std"), not(test)))] pub use alloc::{string::{String, ToString}, vec::Vec, boxed::Box, borrow::{Borrow, BorrowMut, Cow, ToOwned}, slice, rc}; #[cfg(all(not(feature = "std"), not(test), any(not(rust_v_1_60), target_has_atomic = "ptr")))] pub use alloc::sync; #[cfg(any(feature = "std", test))] pub use std::{string::{String, ToString}, vec::Vec, boxed::Box, borrow::{Borrow, BorrowMut, Cow, ToOwned}, slice, rc, sync}; #[cfg(all(not(feature = "std"), not(test)))] pub use alloc::collections::{BTreeMap, BTreeSet, btree_map, BinaryHeap}; #[cfg(any(feature = "std", test))] pub use std::collections::{BTreeMap, BTreeSet, btree_map, BinaryHeap}; #[cfg(feature = "std")] pub use crate::io::sink; #[cfg(not(feature = "std"))] pub use crate::io_extras::sink; pub use hex::DisplayHex; }