openethereum/util/src/lib.rs

124 lines
3.4 KiB
Rust
Raw Normal View History

// Copyright 2015-2017 Parity Technologies (UK) Ltd.
2016-02-05 13:40:41 +01:00
// This file is part of Parity.
// Parity is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Parity is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
2016-01-19 17:02:01 +01:00
#![warn(missing_docs)]
2016-02-12 22:01:23 +01:00
#![cfg_attr(feature="dev", feature(plugin))]
#![cfg_attr(feature="dev", plugin(clippy))]
2016-02-19 11:57:52 +01:00
2016-02-15 00:51:50 +01:00
// Clippy settings
// Most of the time much more readable
2016-02-19 11:57:52 +01:00
#![cfg_attr(feature="dev", allow(needless_range_loop))]
2016-02-15 00:51:50 +01:00
// Shorter than if-else
2016-02-19 11:57:52 +01:00
#![cfg_attr(feature="dev", allow(match_bool))]
2016-02-15 00:51:50 +01:00
// We use that to be more explicit about handled cases
2016-02-19 11:57:52 +01:00
#![cfg_attr(feature="dev", allow(match_same_arms))]
// Keeps consistency (all lines with `.clone()`).
2016-02-19 11:57:52 +01:00
#![cfg_attr(feature="dev", allow(clone_on_copy))]
// Some false positives when doing pattern matching.
#![cfg_attr(feature="dev", allow(needless_borrow))]
// TODO [todr] a lot of warnings to be fixed
#![cfg_attr(feature="dev", allow(assign_op_pattern))]
2016-01-17 13:11:25 +01:00
//! Ethcore-util library
//!
//! ### Rust version:
//! - nightly
//!
//! ### Supported platforms:
//! - OSX
//! - Linux
//!
2016-02-01 14:48:38 +01:00
//! ### Building:
2016-01-17 13:11:25 +01:00
//!
2016-02-01 14:48:38 +01:00
//! - Ubuntu 14.04 and later:
2016-01-17 13:11:25 +01:00
//!
2016-02-01 14:48:38 +01:00
//! ```bash
//! # install rocksdb
//! add-apt-repository "deb http://ppa.launchpad.net/giskou/librocksdb/ubuntu trusty main"
//! apt-get update
//! apt-get install -y --force-yes librocksdb
//!
//! # install multirust
//! curl -sf https://raw.githubusercontent.com/brson/multirust/master/blastoff.sh | sh -s -- --yes
//!
//! # install nightly and make it default
//! multirust update nightly && multirust default nightly
//!
//! # export rust LIBRARY_PATH
//! export LIBRARY_PATH=/usr/local/lib
//!
//! # download and build parity
//! git clone https://github.com/paritytech/parity
2016-02-01 14:48:38 +01:00
//! cd parity
//! cargo build --release
//! ```
2016-02-09 16:47:21 +01:00
//!
2016-01-17 13:11:25 +01:00
//! - OSX:
//!
//! ```bash
2016-02-01 14:48:38 +01:00
//! # install rocksdb && multirust
//! brew update
2016-01-17 13:11:25 +01:00
//! brew install rocksdb
2016-02-01 14:48:38 +01:00
//! brew install multirust
2016-01-17 13:11:25 +01:00
//!
2016-02-01 14:48:38 +01:00
//! # install nightly and make it default
//! multirust update nightly && multirust default nightly
2016-01-17 13:11:25 +01:00
//!
2016-02-01 14:48:38 +01:00
//! # export rust LIBRARY_PATH
//! export LIBRARY_PATH=/usr/local/lib
//!
//! # download and build parity
//! git clone https://github.com/paritytech/parity
2016-02-01 14:48:38 +01:00
//! cd parity
//! cargo build --release
2016-01-17 13:11:25 +01:00
//! ```
extern crate rustc_hex;
2016-01-17 13:11:25 +01:00
extern crate rocksdb;
extern crate env_logger;
extern crate secp256k1;
extern crate elastic_array;
2016-02-19 15:18:20 +01:00
extern crate ethcore_devtools as devtools;
2016-02-16 02:05:36 +01:00
extern crate libc;
2016-02-22 09:04:44 +01:00
extern crate target_info;
2016-09-13 15:26:31 +02:00
extern crate ethcore_bigint as bigint;
extern crate ethcore_bytes as bytes;
extern crate parking_lot;
extern crate tiny_keccak;
extern crate rlp;
extern crate heapsize;
extern crate ethcore_logger;
extern crate hash as keccak;
extern crate hashdb;
extern crate memorydb;
2017-09-12 19:23:02 +02:00
extern crate patricia_trie as trie;
extern crate kvdb;
extern crate util_error as error;
#[cfg(test)]
extern crate kvdb_memorydb;
2016-01-17 13:11:25 +01:00
pub mod misc;
pub use misc::*;
pub use hashdb::*;
2016-10-26 13:53:47 +02:00
pub use memorydb::MemoryDB;
2016-02-15 16:01:52 +01:00
2016-08-16 10:47:12 +02:00
/// 160-bit integer representing account address
2017-09-04 16:36:49 +02:00
pub type Address = bigint::hash::H160;