prepare cargo configuration for upload of crates

This commit is contained in:
Robert Habermeier
2017-11-10 18:31:31 +01:00
parent 85465fc0b1
commit be092e7c09
12 changed files with 33 additions and 26 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" }