6279ff32f5
* separate migration from util and make its dependencies into libs: * snappy * kvdb * error * common * renamed common -> macros * util error does not depend on snappy module * ethsync does not depend on util nor ethcore_error * nibbleslice and nibblevec merged with patricia_trie crate * removed unused dependencies from util * util journaldb traits does not need to be public * util_error * fixed ethcore compile error * ignore .swo files * Update chain.rs
18 lines
454 B
TOML
18 lines
454 B
TOML
[package]
|
|
name = "kvdb"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
log = "0.3"
|
|
ethcore-bytes = { path = "../bytes" }
|
|
ethcore-bigint = { path = "../bigint" }
|
|
ethcore-devtools = { path = "../../devtools" }
|
|
elastic-array = "0.9"
|
|
hashdb = { path = "../hashdb" }
|
|
parking_lot = "0.4"
|
|
regex = "0.2"
|
|
rlp = { path = "../rlp" }
|
|
rocksdb = { git = "https://github.com/paritytech/rust-rocksdb" }
|
|
error-chain = "0.11.0-rc.2"
|