prepare cargo configuration for upload of crates

This commit is contained in:
Robert Habermeier 2017-11-10 18:31:31 +01:00
parent 09eb24c861
commit 3308c8d96d
1 changed files with 6 additions and 4 deletions

View File

@ -2,12 +2,14 @@
name = "memorydb"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "in-memory implementation of hashdb"
license = "GPL-3.0"
[dependencies]
bigint = "4.0"
elastic-array = "0.9"
heapsize = "0.4"
ethcore-bigint = { path = "../bigint", features = ["heapsizeof"] }
hash = { path = "../hash" }
hashdb = { path = "../hashdb" }
rlp = { path = "../rlp" }
ethcore-bigint = { version = "0.1.3", path = "../bigint", features = ["heapsizeof"] }
hash = { version = "0.1.0", path = "../hash" }
hashdb = { version = "0.1.0", path = "../hashdb" }
rlp = { version = "0.2.0", path = "../rlp" }