#![crate_name = "bitcoin"]
#![crate_type = "dylib"]
#![crate_type = "rlib"]
#![cfg_attr(all(test, feature = "unstable"), feature(test))]
#![cfg_attr(feature = "clippy", allow(needless_range_loop))] #![cfg_attr(feature = "clippy", allow(extend_from_slice))]
#![deny(non_upper_case_globals)]
#![deny(non_camel_case_types)]
#![deny(non_snake_case)]
#![deny(unused_mut)]
#![deny(missing_docs)]
extern crate bitcoin_bech32;
extern crate byteorder;
extern crate crypto;
extern crate rand;
extern crate rustc_serialize as serialize;
extern crate secp256k1;
extern crate serde;
extern crate strason;
#[cfg(all(test, feature = "unstable"))] extern crate test;
#[cfg(feature="bitcoinconsensus")] extern crate bitcoinconsensus;
#[cfg(test)]
#[macro_use]
mod test_macros;
#[macro_use]
mod internal_macros;
#[macro_use]
pub mod macros;
pub mod network;
pub mod blockdata;
pub mod util;