62b340f2b9
* Create new column family for local node info * remove DBTransaction::new reliance on DB * KeyValueDB trait * InMemory KeyValueDB implementation * journaldb generic over KVDB * make most of `ethcore` generic over KVDB * fix json tests compilation * get all tests compiling * implement local store (just for transactions) * finish local store API, test * put everything into place * better test for skipping bad transactions * fix warning * update local store every 15 minutes * remove superfluous `{}`s
17 lines
411 B
TOML
17 lines
411 B
TOML
[package]
|
|
name = "parity-local-store"
|
|
description = "Manages persistent local node data."
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
ethcore-util = { path = "../util" }
|
|
ethcore-io = { path = "../util/io" }
|
|
ethcore = { path = "../ethcore" }
|
|
rlp = {path = "../util/rlp" }
|
|
serde = "0.9"
|
|
serde_derive = "0.9"
|
|
serde_json = "0.9"
|
|
log = "0.3"
|
|
ethkey = { path = "../ethkey" }
|