bitcoin_parser/
lib.rs

1//! An implementation of the parser of the bitcoin block header.
2
3#![warn(unused_extern_crates)]
4#![no_std]
5
6extern crate byteorder;
7extern crate sha2;
8#[macro_use]
9extern crate arrayref;
10
11pub mod hash;
12pub mod header;