dissolve util (#7460)

* ethereum-types refactor in progress

* ethereum-types refactor in progress

* ethereum-types refactor in progress

* ethereum-types refactor in progress

* ethereum-types refactor finished

* removed obsolete util/src/lib.rs

* removed commented out code
This commit is contained in:
Marek Kotewicz
2018-01-10 13:35:18 +01:00
committed by Svyatoslav Nikolsky
parent 4a4d64be56
commit e95b093483
395 changed files with 744 additions and 1913 deletions

View File

@@ -7,7 +7,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
serde = "1"
serde_json = "1"
serde_derive = "1"
ethcore-bigint = { path = "../../../util/bigint" }
ethereum-types = "0.1"
ethjson = { path = "../../../json" }
vm = { path = "../../vm" }
wasm = { path = "../" }
@@ -16,4 +16,4 @@ ethcore-logger = { path = "../../../logger" }
rustc-hex = "1"
[features]
default = ["ethcore-bigint/std"]
default = ["ethereum-types/std"]

View File

@@ -1,7 +1,7 @@
extern crate serde;
extern crate serde_json;
#[macro_use] extern crate serde_derive;
extern crate ethcore_bigint;
extern crate ethereum_types;
extern crate ethjson;
extern crate wasm;
extern crate vm;
@@ -43,4 +43,4 @@ fn main() {
}
std::process::exit(exit_code);
}
}

View File

@@ -5,7 +5,7 @@ use vm::tests::FakeExt;
use std::io::{self, Read};
use std::{fs, path, fmt};
use std::sync::Arc;
use ethcore_bigint::prelude::{U256, H256, H160};
use ethereum_types::{U256, H256, H160};
use rustc_hex::ToHex;
fn load_code<P: AsRef<path::Path>>(p: P) -> io::Result<Vec<u8>> {
@@ -258,4 +258,4 @@ pub fn run_fixture(fixture: &Fixture) -> Vec<Fail> {
}
}
fails
}
}