* verification: check if server is running (#4140) * verification: check if server is running See also ethcore/email-verification#67c6466 and ethcore/sms-verification#a585e42. * verification: show in the UI if server is running * verification: code style ✨, more i18n * fix i18n key * Optimized hash lookups (#4144) * Optimize hash comparison * Use libc * Ropsten fork detection (#4163) * Stop flickering + added loader in AddressSelector (#4149) * Stop UI flickering + added loader to AddressSelector #4103 * PR Grumbles * Add a password strength component (#4153) * Added new PasswordStrength Component * Added tests * PR Grumbles * icarus -> update, increase web timeout. (#4165) * icarus -> update, increase web timeout. * Fix estimate gas * Fix token images // Error in Contract Queries (#4169) * Fix dapps not loading (#4170) * Add secure to dappsreg * Remove trailing slash // fix dapps
41 lines
1.2 KiB
Rust
41 lines
1.2 KiB
Rust
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
|
|
// 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/>.
|
|
|
|
//! Efficient large, fixed-size big integers and hashes.
|
|
|
|
#![cfg_attr(asm_available, feature(asm))]
|
|
|
|
extern crate rand;
|
|
extern crate rustc_serialize;
|
|
extern crate bigint;
|
|
extern crate libc;
|
|
#[macro_use] extern crate heapsize;
|
|
|
|
pub mod hash;
|
|
|
|
/// A prelude module for re-exporting all the types defined in this crate.
|
|
///
|
|
/// ```rust
|
|
/// use ethcore_bigint::prelude::*;
|
|
///
|
|
/// let x: U256 = U256::zero();
|
|
/// let y = x + 1.into();
|
|
/// ```
|
|
pub mod prelude {
|
|
pub use ::bigint::*;
|
|
pub use ::hash::*;
|
|
}
|