From 716691c42b794ad004d95df5ecdc77fe7d3b9d3b Mon Sep 17 00:00:00 2001 From: David Palm Date: Fri, 13 Jul 2018 14:29:10 +0200 Subject: [PATCH] Remove uint (moved to parity-common) --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3f759296f..4b651c3c9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,9 @@ crunchy = "0.1.5" ethereum-types = { version = "0.3.1", path ="../ethereum-types", features = ["std", "heapsizeof"] } quickcheck = "0.6" serde_json = "1.0" -uint = { path = "../uint" , features = ["impl_quickcheck_arbitrary"] } +# TODO: remove `branch` when https://github.com/paritytech/parity-common/pull/12 lands +uint = { git = "https://github.com/paritytech/parity-common", branch = "add-fixed-hash", features = ["impl_quickcheck_arbitrary"] } + [features] use_asm = ["uint/use_asm", "ethereum-types/use_asm"]