diff --git a/Cargo.toml b/Cargo.toml index ca705ff5..54771bf3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,13 +12,13 @@ keywords = ["wasm", "parity", "ethereum", "blockchain"] categories = ["no-std", "embedded"] [build-dependencies] -parity-hash = { version = "1", default-features = false } +parity-hash = { version = "1.2.2", default-features = false } [dependencies] pwasm-std = "0.10" -[dependencies.bigint] -version = "4" +[dependencies.uint] +version = "0.3" default-features = false [dependencies.byteorder] @@ -26,10 +26,10 @@ version = "1" default-features = false [dependencies.parity-hash] -version = "1" +version = "1.2.2" default-features = false [features] default = [] kip4 = [] -std = ["pwasm-std/std", "parity-hash/std", "bigint/std", "byteorder/std"] +std = ["pwasm-std/std", "parity-hash/std", "uint/std", "byteorder/std"] diff --git a/src/ext.rs b/src/ext.rs index 3c6e1325..4e2ce0af 100644 --- a/src/ext.rs +++ b/src/ext.rs @@ -1,7 +1,7 @@ //! Safe wrapper around externalities invokes. use hash::{H256, Address}; -use bigint::U256; +use uint::U256; use pwasm_std; /// Generic wasm error diff --git a/src/lib.rs b/src/lib.rs index a0a89973..bdc4c992 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ extern crate pwasm_std; extern crate parity_hash as hash; -extern crate bigint; +extern crate uint; mod ext; mod storage;