From 0a007d5adafda2b0713f74394bfe191927b8e036 Mon Sep 17 00:00:00 2001 From: Herobird Date: Tue, 13 Nov 2018 11:12:22 +0100 Subject: [PATCH] Update dependency versions in Cargo.toml --- ethbloom/Cargo.toml | 2 +- ethereum-types/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ethbloom/Cargo.toml b/ethbloom/Cargo.toml index e60b09c..1a6d6af 100644 --- a/ethbloom/Cargo.toml +++ b/ethbloom/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/paritytech/primitives" tiny-keccak = "1.4" crunchy = { version = "0.2.1", default-features = false, features = ["limit_256"] } rustc-hex = { version = "2.0" } -fixed-hash = { version = "0.3.0", default_features = false } +fixed-hash = { version = "0.3", default_features = false } ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true } serde = { version = "1.0", optional = true } diff --git a/ethereum-types/Cargo.toml b/ethereum-types/Cargo.toml index 5770838..8f53d7b 100644 --- a/ethereum-types/Cargo.toml +++ b/ethereum-types/Cargo.toml @@ -8,11 +8,11 @@ description = "Ethereum types" [dependencies] crunchy = { version = "0.2.1", default-features = false } -ethbloom = { path = "../ethbloom", version = "0.5.0", default-features = false } +ethbloom = { path = "../ethbloom", version = "0.6", default-features = false } ethereum-types-serialize = { version = "0.2.1", path = "../serialize", optional = true } -fixed-hash = { version = "0.3.0", default_features = false } +fixed-hash = { version = "0.3", default_features = false } serde = { version = "1.0", optional = true } -uint = { version = "0.5.0", default_features = false } +uint = { version = "0.5", default_features = false } [dev-dependencies] serde_json = "1.0"