Bring integer arithmetic up to crates.io (#3943)

* split initial

* decouple crate

* fix tests compilation

* fix rlp tests
This commit is contained in:
Nikolay Volf
2016-12-23 19:53:06 +04:00
committed by Gav Wood
parent 0ed45eaf15
commit e7ca4445e2
12 changed files with 26 additions and 2334 deletions

View File

@@ -22,8 +22,7 @@ pub use error::*;
pub use bytes::*;
pub use vector::*;
pub use sha3::*;
pub use bigint::hash::*;
pub use bigint::uint::*;
pub use bigint::prelude::*;
pub use bigint::hash;
#[macro_export]

View File

@@ -17,7 +17,7 @@
//! Coversion from json.
use standard::*;
use bigint::uint::*;
use bigint::prelude::*;
#[macro_export]
macro_rules! xjson {

View File

@@ -16,7 +16,7 @@
//! Statistical functions.
use bigint::uint::*;
use bigint::prelude::*;
/// Discretised histogram.
#[derive(Debug, PartialEq)]
@@ -62,7 +62,7 @@ impl Histogram {
#[cfg(test)]
mod tests {
use bigint::uint::U256;
use bigint::prelude::U256;
use super::Histogram;
#[test]