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

@@ -26,7 +26,7 @@ tiny-keccak= "1.0"
ethcore-logger = { path = "../logger" }
triehash = { path = "triehash" }
hashdb = { path = "hashdb" }
patricia_trie = { path = "patricia_trie" }
patricia-trie = { path = "patricia_trie" }
ethcore-bytes = { path = "bytes" }
memorydb = { path = "memorydb" }
util-error = { path = "error" }

View File

@@ -2,5 +2,7 @@
name = "ethcore-bytes"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "byte utilities for Parity"
license = "GPL-3.0"
[dependencies]

View File

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

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" }

View File

@@ -1,5 +1,5 @@
[package]
name = "patricia_trie"
name = "patricia-trie"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
@@ -7,13 +7,11 @@ authors = ["Parity Technologies <admin@parity.io>"]
elastic-array = "0.9"
log = "0.3"
rand = "0.3"
ethcore-bytes = { path = "../bytes" }
ethcore-bigint = { path = "../bigint" }
hash = { path = "../hash" }
hashdb = { path = "../hashdb" }
rlp = { path = "../rlp" }
triehash = { path = "../triehash" }
memorydb = { path = "../memorydb" }
ethcore-logger = { path = "../../logger" }
ethcore-bytes = { version = "0.1.0", path = "../bytes" }
ethcore-bigint = { version = "0.1.3", path = "../bigint" }
hash = { version = "0.1.0", path = "../hash" }
hashdb = { version = "0.1.0", path = "../hashdb" }
rlp = { version = "0.2.0", path = "../rlp" }
triehash = { version = "0.1.0", path = "../triehash" }
memorydb = { version = "0.1.0", path = "../memorydb" }
ethcore-logger = { version = "1.9.0", path = "../../logger" }

View File

@@ -942,6 +942,7 @@ impl<'a> Drop for TrieDBMut<'a> {
#[cfg(test)]
mod tests {
extern crate triehash;
use self::triehash::trie_root;
use hashdb::*;
use memorydb::*;

View File

@@ -2,6 +2,8 @@
name = "triehash"
version = "0.1.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "in memory patricia trie operations"
license = "GPL-3.0"
[dependencies]
rlp = { path = "../rlp" }