dae5d75dd6
* cargo upgrade "ethereum-types" --all --allow-prerelease * [ethash] fix compilation errors * [ethkey] fix compilation errors * [journaldb] fix compilation errors * [dir] fix compilation errors * [ethabi] update to 0.7 * wip * [eip-712] fix compilation errors * [ethjson] fix compilation errors * [Cargo.toml] add TODO to remove patches * [ethstore] fix compilation errors * use patched keccak-hash with new primitive-types * wip * [ethcore-network-devp2p] fix compilation errors * [vm] fix compilation errors * [common-types, evm, wasm] fix compilation errors * [ethcore-db] Require AsRef instead of Deref for keys * [ethcore-blockchain] fix some compilation errors * [blooms-db] fix compilation errors Thanks a lot @dvdplm :) * we don't need no rlp ethereum feature * [ethcore] fix some compilation errors * [parity-ipfs-api] fix compilation error * [ethcore-light] fix compilation errors * [Cargo.lock] update parity-common * [ethcore-private-tx] fix some compilation errors * wip * [ethcore-private-tx] fix compilation errors * [parity-updater] fix compilation errors * [parity-rpc] fix compilation errors * [parity-bin] fix other compilation errors * update to new ethereum-types * update keccak-hash * [fastmap] fix compilation in tests * [blooms-db] fix compilation in tests * [common-types] fix compilation in tests * [triehash-ethereum] fix compilation in tests * [ethkey] fix compilation in tests * [pwasm-run-test] fix compilation errors * [wasm] fix compilation errors * [ethjson] fix compilation in tests * [eip-712] fix compilation in tests * [ethcore-blockchain] fix compilation in tests * [ethstore] fix compilation in tests * [ethstore-accounts] fix compilation in tests * [parity-hash-fetch] fix compilation in tests * [parity-whisper] fix compilation in tests * [ethcore-miner] fix compilation in tests * [ethcore-network-devp2p] fix compilation in tests * [*] upgrade rand to 0.6 * [evm] get rid of num-bigint conversions * [ethcore] downgrade trie-standardmap and criterion * [ethcore] fix some warnings * [ethcore] fix compilation in tests * [evmbin] fix compilation in tests * [updater] fix compilation in tests * [ethash] fix compilation in tests * [ethcore-secretstore] fix compilation in tests * [ethcore-sync] fix compilation in tests * [parity-rpc] fix compilation in tests * [ethcore] finally fix compilation in tests FUCK YEAH!!! * [ethstore] lazy_static is unused * [ethcore] fix test * fix up bad merge * [Cargo.toml] remove unused patches * [*] replace some git dependencies with crates.io * [Cargo.toml] remove unused lazy_static * [*] clean up * [ethcore] fix transaction_filter_deprecated test * [private-tx] fix serialization tests * fix more serialization tests * [ethkey] fix smoky test * [rpc] fix tests, please? * [ethcore] remove commented out code * Apply suggestions from code review Co-Authored-By: Tomasz Drwięga <tomusdrw@users.noreply.github.com> * [ethstore] remove unused dev-dependency * [ethcore] remove resolved TODO * [*] resolve keccak-hash TODO * [*] s/Address::default()/Address::zero() * [rpc] remove Subscribers::new_test * [rpc] remove EthPubSubClient::new_test * [ethcore] use trie-standardmap from crates.io * [dir] fix db_root_path * [ethcore] simplify snapshot::tests::helpers::fill_storage * Apply suggestions from code review Co-Authored-By: David <dvdplm@gmail.com> * [ethcore-secretstore] resolve TODO in serialization * [ethcore-network-devp2p] resolve TODO in save_key * [Cargo.lock] update triehash * [*] use ethabi from crates.io * [ethkey] use secp256k1 from master branch * [Cargo.lock] update eth-secp256k1
192 lines
4.5 KiB
Rust
192 lines
4.5 KiB
Rust
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Ethereum.
|
|
|
|
// Parity Ethereum 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 Ethereum 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 Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#![warn(missing_docs, unused_extern_crates)]
|
|
#![cfg_attr(feature = "time_checked_add", feature(time_checked_add))]
|
|
|
|
//! Ethcore library
|
|
//!
|
|
//! ### Rust version:
|
|
//! - nightly
|
|
//!
|
|
//! ### Supported platforms:
|
|
//! - OSX
|
|
//! - Linux
|
|
//!
|
|
//! ### Building:
|
|
//!
|
|
//! - Ubuntu 14.04 and later:
|
|
//!
|
|
//! ```bash
|
|
//!
|
|
//! # install rustup
|
|
//! curl https://sh.rustup.rs -sSf | sh
|
|
//!
|
|
//! # download and build parity
|
|
//! git clone https://github.com/paritytech/parity-ethereum
|
|
//! cd parity
|
|
//! cargo build --release
|
|
//! ```
|
|
//!
|
|
//! - OSX:
|
|
//!
|
|
//! ```bash
|
|
//! # install rocksdb && rustup
|
|
//! brew update
|
|
//! curl https://sh.rustup.rs -sSf | sh
|
|
//!
|
|
//! # download and build parity
|
|
//! git clone https://github.com/paritytech/parity-ethereum
|
|
//! cd parity
|
|
//! cargo build --release
|
|
//! ```
|
|
|
|
// Recursion limit required because of
|
|
// error_chain foreign_links.
|
|
#![recursion_limit="128"]
|
|
|
|
extern crate ansi_term;
|
|
extern crate bn;
|
|
extern crate byteorder;
|
|
extern crate common_types as types;
|
|
extern crate crossbeam;
|
|
extern crate ethabi;
|
|
extern crate ethash;
|
|
extern crate ethcore_blockchain as blockchain;
|
|
extern crate ethcore_bloom_journal as bloom_journal;
|
|
extern crate ethcore_call_contract as call_contract;
|
|
extern crate ethcore_db as db;
|
|
extern crate ethcore_io as io;
|
|
extern crate ethcore_miner;
|
|
extern crate ethereum_types;
|
|
extern crate ethjson;
|
|
extern crate ethkey;
|
|
extern crate futures;
|
|
extern crate hash_db;
|
|
extern crate heapsize;
|
|
extern crate itertools;
|
|
extern crate journaldb;
|
|
extern crate keccak_hash as hash;
|
|
extern crate keccak_hasher;
|
|
extern crate kvdb;
|
|
extern crate kvdb_memorydb;
|
|
extern crate len_caching_lock;
|
|
extern crate lru_cache;
|
|
extern crate memory_cache;
|
|
extern crate memory_db;
|
|
extern crate num;
|
|
extern crate num_cpus;
|
|
extern crate parity_bytes as bytes;
|
|
extern crate parity_crypto;
|
|
extern crate parity_snappy as snappy;
|
|
extern crate parking_lot;
|
|
extern crate trie_db as trie;
|
|
extern crate patricia_trie_ethereum as ethtrie;
|
|
extern crate rand;
|
|
extern crate rayon;
|
|
extern crate rlp;
|
|
extern crate rustc_hex;
|
|
extern crate serde;
|
|
extern crate stats;
|
|
extern crate triehash_ethereum as triehash;
|
|
extern crate unexpected;
|
|
extern crate using_queue;
|
|
extern crate vm;
|
|
extern crate wasm;
|
|
|
|
#[cfg(test)]
|
|
extern crate rand_xorshift;
|
|
#[cfg(test)]
|
|
extern crate ethcore_accounts as accounts;
|
|
#[cfg(feature = "stratum")]
|
|
extern crate ethcore_stratum;
|
|
#[cfg(any(test, feature = "tempdir"))]
|
|
extern crate tempdir;
|
|
#[cfg(any(test, feature = "kvdb-rocksdb"))]
|
|
extern crate kvdb_rocksdb;
|
|
#[cfg(any(test, feature = "blooms-db"))]
|
|
extern crate blooms_db;
|
|
#[cfg(any(test, feature = "env_logger"))]
|
|
extern crate env_logger;
|
|
#[cfg(test)]
|
|
extern crate rlp_compress;
|
|
|
|
#[macro_use]
|
|
extern crate ethabi_derive;
|
|
#[macro_use]
|
|
extern crate ethabi_contract;
|
|
extern crate derive_more;
|
|
#[macro_use]
|
|
extern crate log;
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
#[macro_use]
|
|
extern crate macros;
|
|
#[macro_use]
|
|
extern crate rlp_derive;
|
|
#[macro_use]
|
|
extern crate trace_time;
|
|
#[macro_use]
|
|
extern crate serde_derive;
|
|
|
|
#[cfg_attr(test, macro_use)]
|
|
extern crate evm;
|
|
|
|
#[cfg(all(test, feature = "price-info"))]
|
|
extern crate fetch;
|
|
|
|
#[cfg(all(test, feature = "price-info"))]
|
|
extern crate parity_runtime;
|
|
|
|
#[cfg(not(time_checked_add))]
|
|
extern crate time_utils;
|
|
|
|
pub mod block;
|
|
pub mod builtin;
|
|
pub mod client;
|
|
pub mod engines;
|
|
pub mod error;
|
|
pub mod ethereum;
|
|
pub mod executed;
|
|
pub mod executive;
|
|
pub mod machine;
|
|
pub mod miner;
|
|
pub mod pod_state;
|
|
pub mod pod_account;
|
|
pub mod snapshot;
|
|
pub mod spec;
|
|
pub mod state;
|
|
pub mod state_db;
|
|
pub mod trace;
|
|
pub mod transaction_ext;
|
|
pub mod verification;
|
|
|
|
mod account_db;
|
|
mod externalities;
|
|
mod factory;
|
|
mod tx_filter;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
#[cfg(feature = "json-tests")]
|
|
pub mod json_tests;
|
|
#[cfg(any(test, feature = "test-helpers"))]
|
|
pub mod test_helpers;
|
|
|
|
pub use executive::contract_address;
|
|
pub use evm::CreateContractAddress;
|
|
pub use trie::TrieSpec;
|