update ethcore-bigint version

This commit is contained in:
Robert Habermeier 2017-11-10 18:46:35 +01:00
parent 5423518e1e
commit 5c8f39c3bd
4 changed files with 13 additions and 13 deletions

12
Cargo.lock generated
View File

@ -494,7 +494,7 @@ dependencies = [
"futures 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)",
"hardware-wallet 1.9.0",
"hash 0.1.0",
"hashdb 0.1.0",
"hashdb 0.1.1",
"heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"hyper 0.10.0-a.0 (git+https://github.com/paritytech/hyper)",
"itertools 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)",
@ -731,7 +731,7 @@ dependencies = [
"ethcore-bytes 0.1.0",
"ethcore-logger 1.9.0",
"hash 0.1.0",
"hashdb 0.1.0",
"hashdb 0.1.1",
"heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"journaldb 0.1.0",
"kvdb 0.1.0",
@ -1037,7 +1037,7 @@ dependencies = [
[[package]]
name = "hashdb"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"elastic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"ethcore-bigint 0.2.1",
@ -1223,7 +1223,7 @@ dependencies = [
"ethcore-bytes 0.1.0",
"ethcore-logger 1.9.0",
"hash 0.1.0",
"hashdb 0.1.0",
"hashdb 0.1.1",
"heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"kvdb 0.1.0",
"kvdb-memorydb 0.1.0",
@ -1513,7 +1513,7 @@ dependencies = [
"elastic-array 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
"ethcore-bigint 0.2.1",
"hash 0.1.0",
"hashdb 0.1.0",
"hashdb 0.1.1",
"heapsize 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rlp 0.2.0",
]
@ -2334,7 +2334,7 @@ dependencies = [
"ethcore-bytes 0.1.0",
"ethcore-logger 1.9.0",
"hash 0.1.0",
"hashdb 0.1.0",
"hashdb 0.1.1",
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"memorydb 0.1.0",
"rand 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,10 +1,10 @@
[package]
name = "hashdb"
version = "0.1.0"
version = "0.1.1"
authors = ["Parity Technologies <admin@parity.io>"]
description = "trait for hash-keyed databases."
license = "GPL-3.0"
[dependencies]
elastic-array = "0.9"
ethcore-bigint = { version = "0.1.3", path = "../bigint" }
ethcore-bigint = { version = "0.2.1", path = "../bigint" }

View File

@ -8,9 +8,9 @@ elastic-array = "0.9"
log = "0.3"
rand = "0.3"
ethcore-bytes = { version = "0.1.0", path = "../bytes" }
ethcore-bigint = { version = "0.1.3", path = "../bigint" }
ethcore-bigint = { version = "0.2.1", path = "../bigint" }
hash = { version = "0.1.0", path = "../hash" }
hashdb = { version = "0.1.0", path = "../hashdb" }
hashdb = { version = "0.1.1", path = "../hashdb" }
rlp = { version = "0.2.0", path = "../rlp" }
triehash = { version = "0.1.0", path = "../triehash" }
memorydb = { version = "0.1.0", path = "../memorydb" }

View File

@ -6,6 +6,6 @@ description = "in memory patricia trie operations"
license = "GPL-3.0"
[dependencies]
rlp = { path = "../rlp" }
ethcore-bigint = { path = "../bigint" }
hash = { path = "../hash" }
rlp = { version = "0.2", path = "../rlp" }
ethcore-bigint = { version = "0.2.1", path = "../bigint" }
hash = { version = "0.1", path = "../hash" }